├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── dev-requirements.txt ├── setup.py ├── sphinxext └── remoteliteralinclude.py └── tests ├── conftest.py ├── roots ├── test-simple-full │ ├── conf.py │ └── index.rst └── test-simple-short │ ├── conf.py │ └── index.rst └── test_options.py /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | black 3 | pytest==6.2.5 4 | wheel==0.40.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/setup.py -------------------------------------------------------------------------------- /sphinxext/remoteliteralinclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/sphinxext/remoteliteralinclude.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/roots/test-simple-full/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/tests/roots/test-simple-full/conf.py -------------------------------------------------------------------------------- /tests/roots/test-simple-full/index.rst: -------------------------------------------------------------------------------- 1 | .. rli:: http://example.com/ 2 | :lines: 4-4 -------------------------------------------------------------------------------- /tests/roots/test-simple-short/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/tests/roots/test-simple-short/conf.py -------------------------------------------------------------------------------- /tests/roots/test-simple-short/index.rst: -------------------------------------------------------------------------------- 1 | .. rli:: http://example.com/ 2 | :lines: 4-4 -------------------------------------------------------------------------------- /tests/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpilibsuite/sphinxext-remoteliteralinclude/HEAD/tests/test_options.py --------------------------------------------------------------------------------