├── .github └── workflows │ ├── check.yml │ ├── python-publish.yaml │ └── test.yml ├── .gitignore ├── .mergify.yml ├── .readthedocs.yaml ├── LICENSE ├── README.rst ├── doc ├── Makefile └── source │ ├── _static │ └── .placeholder │ ├── _templates │ ├── csv-sample.tmpl │ ├── dbm-sample.tmpl │ ├── import-module-sample.tmpl │ ├── inventory.tmpl │ ├── sample-multiple.tmpl │ ├── sample.tmpl │ └── xml-sample.tmpl │ ├── cli.rst │ ├── conf.py │ ├── csv.rst │ ├── dbm.rst │ ├── history.rst │ ├── import-module.rst │ ├── index.rst │ ├── inline.rst │ ├── install.rst │ ├── inventory.csv │ ├── json.rst │ ├── legacy.rst │ ├── make_dbm.py │ ├── multiple-sources.rst │ ├── nodata.rst │ ├── part-details.yaml │ ├── sample-multiple.yaml │ ├── sample.csv │ ├── sample.json │ ├── sample.xml │ ├── sample.yaml │ ├── sampledbm.dat │ ├── sampledbm.dir │ ├── using.rst │ ├── xml.rst │ └── yaml.rst ├── pyproject.toml ├── pytest.ini ├── sphinxcontrib └── datatemplates │ ├── __init__.py │ ├── cli.py │ ├── directive.py │ ├── domain.py │ ├── helpers.py │ └── loaders.py └── tests ├── conftest.py ├── test_custom_template_bridge.py ├── test_errors.py ├── test_loaders.py ├── test_loaders_csv.py └── testdata ├── test-custom-template-bridge ├── conf.py ├── index.rst ├── lib │ └── template_bridge.py ├── sample.json └── templates │ └── sample.tmpl ├── test-empty-source ├── conf.py ├── index.rst ├── sample.json └── templates │ └── sample.tmpl ├── test-empty-template ├── conf.py ├── index.rst ├── sample.json └── templates │ └── sample.tmpl ├── test-incorrect-dbm ├── conf.py ├── index.rst ├── sampledbm └── templates │ └── sample.tmpl ├── test-incorrect-import-module ├── conf.py ├── index.rst └── templates │ └── sample.tmpl ├── test-incorrect-json-syntax ├── conf.py ├── index.rst ├── sample.json └── templates │ └── sample.tmpl ├── test-incorrect-template-syntax ├── conf.py ├── index.rst ├── sample.json └── templates │ └── sample.tmpl ├── test-incorrect-xml-syntax ├── conf.py ├── index.rst ├── sample.xml └── templates │ └── sample.tmpl ├── test-incorrect-yaml-syntax ├── conf.py ├── index.rst ├── sample.yaml └── templates │ └── sample.tmpl ├── test-nonexistent-source ├── conf.py ├── index.rst ├── sample.json └── templates │ └── sample.tmpl ├── test-nonexistent-template-filter ├── conf.py ├── index.rst ├── sample.json └── templates │ └── sample.tmpl └── test-nonexistent-template ├── conf.py ├── index.rst ├── sample.json └── templates └── sample.tmpl /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/.github/workflows/python-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/_templates/csv-sample.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/_templates/csv-sample.tmpl -------------------------------------------------------------------------------- /doc/source/_templates/dbm-sample.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/_templates/dbm-sample.tmpl -------------------------------------------------------------------------------- /doc/source/_templates/import-module-sample.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/_templates/import-module-sample.tmpl -------------------------------------------------------------------------------- /doc/source/_templates/inventory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/_templates/inventory.tmpl -------------------------------------------------------------------------------- /doc/source/_templates/sample-multiple.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/_templates/sample-multiple.tmpl -------------------------------------------------------------------------------- /doc/source/_templates/sample.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/_templates/sample.tmpl -------------------------------------------------------------------------------- /doc/source/_templates/xml-sample.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/_templates/xml-sample.tmpl -------------------------------------------------------------------------------- /doc/source/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/cli.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/csv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/csv.rst -------------------------------------------------------------------------------- /doc/source/dbm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/dbm.rst -------------------------------------------------------------------------------- /doc/source/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/history.rst -------------------------------------------------------------------------------- /doc/source/import-module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/import-module.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/inline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/inline.rst -------------------------------------------------------------------------------- /doc/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/install.rst -------------------------------------------------------------------------------- /doc/source/inventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/inventory.csv -------------------------------------------------------------------------------- /doc/source/json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/json.rst -------------------------------------------------------------------------------- /doc/source/legacy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/legacy.rst -------------------------------------------------------------------------------- /doc/source/make_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/make_dbm.py -------------------------------------------------------------------------------- /doc/source/multiple-sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/multiple-sources.rst -------------------------------------------------------------------------------- /doc/source/nodata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/nodata.rst -------------------------------------------------------------------------------- /doc/source/part-details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/part-details.yaml -------------------------------------------------------------------------------- /doc/source/sample-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/sample-multiple.yaml -------------------------------------------------------------------------------- /doc/source/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/sample.csv -------------------------------------------------------------------------------- /doc/source/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/sample.json -------------------------------------------------------------------------------- /doc/source/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/sample.xml -------------------------------------------------------------------------------- /doc/source/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/sample.yaml -------------------------------------------------------------------------------- /doc/source/sampledbm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/sampledbm.dat -------------------------------------------------------------------------------- /doc/source/sampledbm.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/sampledbm.dir -------------------------------------------------------------------------------- /doc/source/using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/using.rst -------------------------------------------------------------------------------- /doc/source/xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/xml.rst -------------------------------------------------------------------------------- /doc/source/yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/doc/source/yaml.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/pytest.ini -------------------------------------------------------------------------------- /sphinxcontrib/datatemplates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/sphinxcontrib/datatemplates/__init__.py -------------------------------------------------------------------------------- /sphinxcontrib/datatemplates/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/sphinxcontrib/datatemplates/cli.py -------------------------------------------------------------------------------- /sphinxcontrib/datatemplates/directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/sphinxcontrib/datatemplates/directive.py -------------------------------------------------------------------------------- /sphinxcontrib/datatemplates/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/sphinxcontrib/datatemplates/domain.py -------------------------------------------------------------------------------- /sphinxcontrib/datatemplates/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/sphinxcontrib/datatemplates/helpers.py -------------------------------------------------------------------------------- /sphinxcontrib/datatemplates/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/sphinxcontrib/datatemplates/loaders.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_custom_template_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/test_custom_template_bridge.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/test_loaders.py -------------------------------------------------------------------------------- /tests/test_loaders_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/test_loaders_csv.py -------------------------------------------------------------------------------- /tests/testdata/test-custom-template-bridge/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-custom-template-bridge/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-custom-template-bridge/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-custom-template-bridge/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-custom-template-bridge/lib/template_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-custom-template-bridge/lib/template_bridge.py -------------------------------------------------------------------------------- /tests/testdata/test-custom-template-bridge/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-custom-template-bridge/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-custom-template-bridge/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.some_key | upperstring}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-empty-source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-empty-source/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-empty-source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-empty-source/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-empty-source/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-empty-source/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-empty-source/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.some_key}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-empty-template/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-empty-template/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-empty-template/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-empty-template/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-empty-template/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-empty-template/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-empty-template/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.some_key}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-dbm/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-dbm/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-dbm/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-dbm/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-dbm/sampledbm: -------------------------------------------------------------------------------- 1 | sample text -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-dbm/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-import-module/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-import-module/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-import-module/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-import-module/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-import-module/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-json-syntax/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-json-syntax/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-json-syntax/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-json-syntax/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-json-syntax/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-json-syntax/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-json-syntax/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.some_key}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-template-syntax/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-template-syntax/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-template-syntax/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-template-syntax/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-template-syntax/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-template-syntax/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-template-syntax/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.some_key} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-xml-syntax/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-xml-syntax/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-xml-syntax/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-xml-syntax/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-xml-syntax/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-xml-syntax/sample.xml -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-xml-syntax/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.find('key1').text}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-yaml-syntax/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-yaml-syntax/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-yaml-syntax/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-yaml-syntax/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-yaml-syntax/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-incorrect-yaml-syntax/sample.yaml -------------------------------------------------------------------------------- /tests/testdata/test-incorrect-yaml-syntax/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.key1}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-source/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-source/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-source/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-source/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-source/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.some_key}} 2 | -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template-filter/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-template-filter/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template-filter/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-template-filter/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template-filter/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-template-filter/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template-filter/templates/sample.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-template-filter/templates/sample.tmpl -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-template/conf.py -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-template/index.rst -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/datatemplates/HEAD/tests/testdata/test-nonexistent-template/sample.json -------------------------------------------------------------------------------- /tests/testdata/test-nonexistent-template/templates/sample.tmpl: -------------------------------------------------------------------------------- 1 | {{data.some_key}} 2 | --------------------------------------------------------------------------------