├── .github ├── dependabot.yml └── workflows │ └── build-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.rst ├── RELEASING.md ├── pyproject.toml ├── src └── sphinx_issues │ └── __init__.py ├── tests ├── source │ ├── _static │ │ └── .gitkeep │ ├── conf.py │ ├── examples.rst │ └── index.rst └── test_sphinx_issues.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/RELEASING.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/sphinx_issues/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/src/sphinx_issues/__init__.py -------------------------------------------------------------------------------- /tests/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/tests/source/conf.py -------------------------------------------------------------------------------- /tests/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/tests/source/examples.rst -------------------------------------------------------------------------------- /tests/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/tests/source/index.rst -------------------------------------------------------------------------------- /tests/test_sphinx_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/tests/test_sphinx_issues.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloria/sphinx-issues/HEAD/tox.ini --------------------------------------------------------------------------------