├── .flake8 ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs ├── _static │ └── demo.png ├── conf.py ├── index.md └── usage.md ├── noxfile.py ├── pyproject.toml ├── src └── sphinx_inline_tabs │ ├── __init__.py │ ├── _impl.py │ └── static │ ├── tabs.css │ └── tabs.js └── tests ├── conftest.py ├── docsets ├── basic │ ├── conf.py │ ├── index.rst │ ├── markdown.md │ └── restructuredtext.rst └── multiple │ ├── conf.py │ ├── index.rst │ ├── markdown.md │ └── restructuredtext.rst ├── test_markup.py └── test_markup ├── test_markup_basic_html_markdown_.html ├── test_markup_basic_html_restructuredtext_.html ├── test_markup_basic_xml_markdown_.xml ├── test_markup_basic_xml_restructuredtext_.xml ├── test_markup_multiple_html_markdown_.html ├── test_markup_multiple_html_restructuredtext_.html ├── test_markup_multiple_xml_markdown_.xml └── test_markup_multiple_xml_restructuredtext_.xml /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203,E501 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Python stuff 2 | .nox 3 | /build 4 | /dist 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile=black 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/README.md -------------------------------------------------------------------------------- /docs/_static/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/docs/_static/demo.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/docs/usage.md -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/sphinx_inline_tabs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/src/sphinx_inline_tabs/__init__.py -------------------------------------------------------------------------------- /src/sphinx_inline_tabs/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/src/sphinx_inline_tabs/_impl.py -------------------------------------------------------------------------------- /src/sphinx_inline_tabs/static/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/src/sphinx_inline_tabs/static/tabs.css -------------------------------------------------------------------------------- /src/sphinx_inline_tabs/static/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/src/sphinx_inline_tabs/static/tabs.js -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/docsets/basic/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/basic/conf.py -------------------------------------------------------------------------------- /tests/docsets/basic/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/basic/index.rst -------------------------------------------------------------------------------- /tests/docsets/basic/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/basic/markdown.md -------------------------------------------------------------------------------- /tests/docsets/basic/restructuredtext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/basic/restructuredtext.rst -------------------------------------------------------------------------------- /tests/docsets/multiple/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/multiple/conf.py -------------------------------------------------------------------------------- /tests/docsets/multiple/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/multiple/index.rst -------------------------------------------------------------------------------- /tests/docsets/multiple/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/multiple/markdown.md -------------------------------------------------------------------------------- /tests/docsets/multiple/restructuredtext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/docsets/multiple/restructuredtext.rst -------------------------------------------------------------------------------- /tests/test_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup.py -------------------------------------------------------------------------------- /tests/test_markup/test_markup_basic_html_markdown_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_basic_html_markdown_.html -------------------------------------------------------------------------------- /tests/test_markup/test_markup_basic_html_restructuredtext_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_basic_html_restructuredtext_.html -------------------------------------------------------------------------------- /tests/test_markup/test_markup_basic_xml_markdown_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_basic_xml_markdown_.xml -------------------------------------------------------------------------------- /tests/test_markup/test_markup_basic_xml_restructuredtext_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_basic_xml_restructuredtext_.xml -------------------------------------------------------------------------------- /tests/test_markup/test_markup_multiple_html_markdown_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_multiple_html_markdown_.html -------------------------------------------------------------------------------- /tests/test_markup/test_markup_multiple_html_restructuredtext_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_multiple_html_restructuredtext_.html -------------------------------------------------------------------------------- /tests/test_markup/test_markup_multiple_xml_markdown_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_multiple_xml_markdown_.xml -------------------------------------------------------------------------------- /tests/test_markup/test_markup_multiple_xml_restructuredtext_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradyunsg/sphinx-inline-tabs/HEAD/tests/test_markup/test_markup_multiple_xml_restructuredtext_.xml --------------------------------------------------------------------------------