├── .github └── workflows │ ├── ci.yml │ ├── create-release.yml │ └── lint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .ruff.toml ├── LICENCE.rst ├── README.rst ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── extend.rst ├── index.rst ├── make.bat ├── markdown.rst ├── misc.rst ├── sample.rst └── usage.rst ├── pyproject.toml ├── sphinxarg ├── __init__.py ├── ext.py ├── markdown.py └── parser.py └── test ├── __init__.py ├── conftest.py ├── roots └── test-default-html │ ├── conf.py │ ├── default-suppressed.rst │ ├── index.rst │ ├── special-characters.rst │ └── subcommand-a.rst ├── sample-default-supressed.py ├── sample-directive-opts.py ├── sample-directive-special.py ├── sample.py ├── sample2.py ├── test_default_html.py └── test_parser.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/.ruff.toml -------------------------------------------------------------------------------- /LICENCE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/LICENCE.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/extend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/extend.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/markdown.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/markdown.rst -------------------------------------------------------------------------------- /docs/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/misc.rst -------------------------------------------------------------------------------- /docs/sample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/sample.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sphinxarg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/sphinxarg/__init__.py -------------------------------------------------------------------------------- /sphinxarg/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/sphinxarg/ext.py -------------------------------------------------------------------------------- /sphinxarg/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/sphinxarg/markdown.py -------------------------------------------------------------------------------- /sphinxarg/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/sphinxarg/parser.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/roots/test-default-html/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinxarg.ext'] 2 | -------------------------------------------------------------------------------- /test/roots/test-default-html/default-suppressed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/roots/test-default-html/default-suppressed.rst -------------------------------------------------------------------------------- /test/roots/test-default-html/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/roots/test-default-html/index.rst -------------------------------------------------------------------------------- /test/roots/test-default-html/special-characters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/roots/test-default-html/special-characters.rst -------------------------------------------------------------------------------- /test/roots/test-default-html/subcommand-a.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/roots/test-default-html/subcommand-a.rst -------------------------------------------------------------------------------- /test/sample-default-supressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/sample-default-supressed.py -------------------------------------------------------------------------------- /test/sample-directive-opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/sample-directive-opts.py -------------------------------------------------------------------------------- /test/sample-directive-special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/sample-directive-special.py -------------------------------------------------------------------------------- /test/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/sample.py -------------------------------------------------------------------------------- /test/sample2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/sample2.py -------------------------------------------------------------------------------- /test/test_default_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/test_default_html.py -------------------------------------------------------------------------------- /test/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx-argparse/HEAD/test/test_parser.py --------------------------------------------------------------------------------