├── .git_archival.txt ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── dependabot-merge.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── pyproject.toml ├── sample └── source │ ├── Eleanor.txt │ ├── Eleanor_diagram.png │ ├── Talya.txt │ ├── Talya_diagram.png │ ├── __init__.py │ ├── conf.py │ ├── five.rst │ ├── four.rst │ ├── index.rst │ ├── markdown_sample.md │ ├── one.rst │ ├── sample_image.png │ ├── sample_include.txt │ ├── three.rst │ └── two.rst ├── spelling_private_dict.txt ├── src └── sphinx_substitution_extensions │ ├── __init__.py │ ├── py.typed │ ├── shared.py │ └── spelling_private_dict.txt └── tests ├── __init__.py ├── conftest.py └── test_substitution_extensions.py /.git_archival.txt: -------------------------------------------------------------------------------- 1 | ref-names: HEAD -> main 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.github/workflows/dependabot-merge.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample/source/Eleanor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/Eleanor.txt -------------------------------------------------------------------------------- /sample/source/Eleanor_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/Eleanor_diagram.png -------------------------------------------------------------------------------- /sample/source/Talya.txt: -------------------------------------------------------------------------------- 1 | This is a text file for Talya. 2 | -------------------------------------------------------------------------------- /sample/source/Talya_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/Talya_diagram.png -------------------------------------------------------------------------------- /sample/source/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Documentation. 3 | """ 4 | -------------------------------------------------------------------------------- /sample/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/conf.py -------------------------------------------------------------------------------- /sample/source/five.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/five.rst -------------------------------------------------------------------------------- /sample/source/four.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/four.rst -------------------------------------------------------------------------------- /sample/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/index.rst -------------------------------------------------------------------------------- /sample/source/markdown_sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/markdown_sample.md -------------------------------------------------------------------------------- /sample/source/one.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/one.rst -------------------------------------------------------------------------------- /sample/source/sample_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/sample_image.png -------------------------------------------------------------------------------- /sample/source/sample_include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/sample_include.txt -------------------------------------------------------------------------------- /sample/source/three.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/three.rst -------------------------------------------------------------------------------- /sample/source/two.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/sample/source/two.rst -------------------------------------------------------------------------------- /spelling_private_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/spelling_private_dict.txt -------------------------------------------------------------------------------- /src/sphinx_substitution_extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/src/sphinx_substitution_extensions/__init__.py -------------------------------------------------------------------------------- /src/sphinx_substitution_extensions/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sphinx_substitution_extensions/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/src/sphinx_substitution_extensions/shared.py -------------------------------------------------------------------------------- /src/sphinx_substitution_extensions/spelling_private_dict.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_substitution_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamtheturtle/sphinx-substitution-extensions/HEAD/tests/test_substitution_extensions.py --------------------------------------------------------------------------------