├── .codecov.yml ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── builddoc.yml │ ├── create-release.yml │ ├── lint.yml │ ├── lock.yml │ ├── main.yml │ ├── nodejs.yml │ └── transifex.yml ├── .gitignore ├── .mailmap ├── .prettierrc.toml ├── .pytest.toml ├── .readthedocs.yml ├── .ruff.toml ├── AUTHORS.rst ├── CHANGES.rst ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── EXAMPLES.rst ├── LICENSE.rst ├── Makefile ├── README.rst ├── bindep.txt ├── doc ├── Makefile ├── _static │ ├── Makefile │ ├── bookcover.png │ ├── diagrams │ │ ├── sphinx_build_flow.dot │ │ ├── sphinx_build_phases.dot │ │ └── sphinx_core_events_flow.dot │ ├── favicon.svg │ ├── jupyter-logo.png │ ├── linux-logo.png │ ├── python-logo.png │ ├── sphinx.png │ ├── themes │ │ ├── agogo.png │ │ ├── alabaster.png │ │ ├── bizstyle.png │ │ ├── classic.png │ │ ├── fullsize │ │ │ ├── agogo.png │ │ │ ├── alabaster.png │ │ │ ├── bizstyle.png │ │ │ ├── classic.png │ │ │ ├── haiku.png │ │ │ ├── nature.png │ │ │ ├── pyramid.png │ │ │ ├── scrolls.png │ │ │ ├── sphinx_rtd_theme.png │ │ │ ├── sphinxdoc.png │ │ │ └── traditional.png │ │ ├── haiku.png │ │ ├── nature.png │ │ ├── pyramid.png │ │ ├── scrolls.png │ │ ├── sphinx_rtd_theme.png │ │ ├── sphinxdoc.png │ │ └── traditional.png │ ├── translation.png │ ├── translation.puml │ ├── translation.svg │ └── tutorial │ │ ├── lumache-autosummary.png │ │ ├── lumache-first-light.png │ │ ├── lumache-furo.png │ │ ├── lumache-py-function-full.png │ │ └── lumache-py-function.png ├── _templates │ └── contents.html ├── _themes │ └── sphinx13 │ │ ├── layout.html │ │ ├── static │ │ ├── sphinx-logo.svg │ │ └── sphinx13.css │ │ └── theme.toml ├── authors.rst ├── changes │ ├── 0.1.rst │ ├── 0.2.rst │ ├── 0.3.rst │ ├── 0.4.rst │ ├── 0.5.rst │ ├── 0.6.rst │ ├── 1.0.rst │ ├── 1.1.rst │ ├── 1.2.rst │ ├── 1.3.rst │ ├── 1.4.rst │ ├── 1.5.rst │ ├── 1.6.rst │ ├── 1.7.rst │ ├── 1.8.rst │ ├── 2.0.rst │ ├── 2.1.rst │ ├── 2.2.rst │ ├── 2.3.rst │ ├── 2.4.rst │ ├── 3.0.rst │ ├── 3.1.rst │ ├── 3.2.rst │ ├── 3.3.rst │ ├── 3.4.rst │ ├── 3.5.rst │ ├── 4.0.rst │ ├── 4.1.rst │ ├── 4.2.rst │ ├── 4.3.rst │ ├── 4.4.rst │ ├── 4.5.rst │ ├── 5.0.rst │ ├── 5.1.rst │ ├── 5.2.rst │ ├── 5.3.rst │ ├── 6.0.rst │ ├── 6.1.rst │ ├── 6.2.rst │ ├── 7.0.rst │ ├── 7.1.rst │ ├── 7.2.rst │ ├── 7.3.rst │ ├── 7.4.rst │ ├── 8.0.rst │ ├── 8.1.rst │ ├── 8.2.rst │ ├── 9.0.rst │ └── index.rst ├── conf.py ├── development │ ├── howtos │ │ ├── builders.rst │ │ ├── index.rst │ │ └── setup_extension.rst │ ├── html_themes │ │ ├── index.rst │ │ └── templating.rst │ ├── index.rst │ └── tutorials │ │ ├── adding_domain.rst │ │ ├── autodoc_ext.rst │ │ ├── examples │ │ ├── README.rst │ │ ├── autodoc_intenum.py │ │ ├── helloworld.py │ │ ├── recipe.py │ │ └── todo.py │ │ ├── extending_build.rst │ │ ├── extending_syntax.rst │ │ └── index.rst ├── examples.rst ├── extdev │ ├── appapi.rst │ ├── builderapi.rst │ ├── collectorapi.rst │ ├── deprecated.rst │ ├── domainapi.rst │ ├── envapi.rst │ ├── event_callbacks.rst │ ├── eventapi.rst │ ├── i18n.rst │ ├── index.rst │ ├── logging.rst │ ├── markupapi.rst │ ├── nodes.rst │ ├── parserapi.rst │ ├── projectapi.rst │ ├── testing.rst │ └── utils.rst ├── faq.rst ├── glossary.rst ├── index.rst ├── internals │ ├── code-of-conduct.rst │ ├── contributing.rst │ ├── index.rst │ ├── organization.rst │ └── release-process.rst ├── latex.rst ├── make.bat ├── man │ ├── index.rst │ ├── sphinx-apidoc.rst │ ├── sphinx-autogen.rst │ ├── sphinx-build.rst │ └── sphinx-quickstart.rst ├── support.rst ├── tutorial │ ├── automatic-doc-generation.rst │ ├── deploying.rst │ ├── describing-code.rst │ ├── end.rst │ ├── first-steps.rst │ ├── getting-started.rst │ ├── index.rst │ ├── more-sphinx-customization.rst │ └── narrative-documentation.rst └── usage │ ├── advanced │ ├── intl.rst │ └── websupport │ │ ├── api.rst │ │ ├── index.rst │ │ ├── quickstart.rst │ │ ├── searchadapters.rst │ │ └── storagebackends.rst │ ├── builders │ └── index.rst │ ├── configuration.rst │ ├── domains │ ├── c.rst │ ├── cpp.rst │ ├── index.rst │ ├── javascript.rst │ ├── mathematics.rst │ ├── python.rst │ ├── restructuredtext.rst │ └── standard.rst │ ├── extensions │ ├── apidoc.rst │ ├── autodoc.rst │ ├── autosectionlabel.rst │ ├── autosummary.rst │ ├── coverage.rst │ ├── doctest.rst │ ├── duration.rst │ ├── example_google.py │ ├── example_google.rst │ ├── example_numpy.py │ ├── example_numpy.rst │ ├── extlinks.rst │ ├── githubpages.rst │ ├── graphviz.rst │ ├── ifconfig.rst │ ├── imgconverter.rst │ ├── index.rst │ ├── inheritance.rst │ ├── intersphinx.rst │ ├── linkcode.rst │ ├── math.rst │ ├── napoleon.rst │ ├── todo.rst │ └── viewcode.rst │ ├── index.rst │ ├── installation.rst │ ├── markdown.rst │ ├── quickstart.rst │ ├── referencing.rst │ ├── restructuredtext │ ├── basics.rst │ ├── directives.rst │ ├── domains.rst │ ├── field-lists.rst │ ├── index.rst │ └── roles.rst │ └── theming.rst ├── package.json ├── pyproject.toml ├── pyrefly.toml ├── sphinx ├── __init__.py ├── __main__.py ├── _cli │ ├── __init__.py │ └── util │ │ ├── __init__.py │ │ ├── colour.py │ │ └── errors.py ├── addnodes.py ├── application.py ├── builders │ ├── __init__.py │ ├── _epub_base.py │ ├── changes.py │ ├── dirhtml.py │ ├── dummy.py │ ├── epub3.py │ ├── gettext.py │ ├── html │ │ ├── __init__.py │ │ ├── _assets.py │ │ └── _build_info.py │ ├── latex │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── nodes.py │ │ ├── theming.py │ │ ├── transforms.py │ │ └── util.py │ ├── linkcheck.py │ ├── manpage.py │ ├── singlehtml.py │ ├── texinfo.py │ ├── text.py │ └── xml.py ├── cmd │ ├── __init__.py │ ├── build.py │ ├── make_mode.py │ └── quickstart.py ├── config.py ├── deprecation.py ├── directives │ ├── __init__.py │ ├── admonitions.py │ ├── code.py │ ├── other.py │ └── patches.py ├── domains │ ├── __init__.py │ ├── _domains_container.py │ ├── _index.py │ ├── c │ │ ├── __init__.py │ │ ├── _ast.py │ │ ├── _ids.py │ │ ├── _parser.py │ │ └── _symbol.py │ ├── changeset.py │ ├── citation.py │ ├── cpp │ │ ├── __init__.py │ │ ├── _ast.py │ │ ├── _ids.py │ │ ├── _parser.py │ │ └── _symbol.py │ ├── index.py │ ├── javascript.py │ ├── math.py │ ├── python │ │ ├── __init__.py │ │ ├── _annotations.py │ │ └── _object.py │ ├── rst.py │ └── std │ │ └── __init__.py ├── environment │ ├── __init__.py │ ├── adapters │ │ ├── __init__.py │ │ ├── asset.py │ │ ├── indexentries.py │ │ └── toctree.py │ └── collectors │ │ ├── __init__.py │ │ ├── asset.py │ │ ├── dependencies.py │ │ ├── metadata.py │ │ ├── title.py │ │ └── toctree.py ├── errors.py ├── events.py ├── ext │ ├── __init__.py │ ├── apidoc │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _cli.py │ │ ├── _extension.py │ │ ├── _generate.py │ │ └── _shared.py │ ├── autodoc │ │ ├── __init__.py │ │ ├── _directive.py │ │ ├── _directive_options.py │ │ ├── _dynamic │ │ │ ├── __init__.py │ │ │ ├── _docstrings.py │ │ │ ├── _importer.py │ │ │ ├── _loader.py │ │ │ ├── _member_finder.py │ │ │ ├── _mock.py │ │ │ ├── _preserve_defaults.py │ │ │ ├── _signatures.py │ │ │ ├── _type_annotations.py │ │ │ └── _type_comments.py │ │ ├── _event_listeners.py │ │ ├── _generate.py │ │ ├── _legacy_class_based │ │ │ ├── __init__.py │ │ │ ├── _directive_options.py │ │ │ ├── _documenters.py │ │ │ └── _sentinels.py │ │ ├── _names.py │ │ ├── _property_types.py │ │ ├── _renderer.py │ │ ├── _sentinels.py │ │ ├── _shared.py │ │ ├── directive.py │ │ ├── importer.py │ │ ├── mock.py │ │ ├── preserve_defaults.py │ │ ├── type_comment.py │ │ └── typehints.py │ ├── autosectionlabel.py │ ├── autosummary │ │ ├── __init__.py │ │ ├── generate.py │ │ └── templates │ │ │ └── autosummary │ │ │ ├── base.rst │ │ │ ├── class.rst │ │ │ └── module.rst │ ├── coverage.py │ ├── doctest.py │ ├── duration.py │ ├── extlinks.py │ ├── githubpages.py │ ├── graphviz.py │ ├── ifconfig.py │ ├── imgconverter.py │ ├── imgmath.py │ ├── inheritance_diagram.py │ ├── intersphinx │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _cli.py │ │ ├── _load.py │ │ ├── _resolve.py │ │ └── _shared.py │ ├── linkcode.py │ ├── mathjax.py │ ├── napoleon │ │ ├── __init__.py │ │ └── docstring.py │ ├── todo.py │ └── viewcode.py ├── extension.py ├── highlighting.py ├── io.py ├── jinja2glue.py ├── locale │ ├── .tx │ │ └── config │ ├── __init__.py │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ca@valencia │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── cak │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── cy │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── en_DE │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── en_FR │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── en_HK │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── eo │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── es_CO │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── et │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── hi_IN │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── is │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ka │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── mk │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── nb_NO │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ne │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── no │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── si │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sphinx.pot │ ├── sq │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sr@latin │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sr_RS │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ta │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── te │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── uk_UA │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ur │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── yue │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── zh_HK │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── zh_TW.Big5 │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── sphinx.js │ │ ├── sphinx.mo │ │ └── sphinx.po ├── parsers.py ├── project.py ├── py.typed ├── pycode │ ├── __init__.py │ ├── ast.py │ └── parser.py ├── pygments_styles.py ├── registry.py ├── roles.py ├── search │ ├── __init__.py │ ├── _stopwords │ │ ├── __init__.py │ │ ├── da.py │ │ ├── da.txt │ │ ├── de.py │ │ ├── de.txt │ │ ├── en.py │ │ ├── en.txt │ │ ├── es.py │ │ ├── es.txt │ │ ├── fi.py │ │ ├── fi.txt │ │ ├── fr.py │ │ ├── fr.txt │ │ ├── hu.py │ │ ├── hu.txt │ │ ├── it.py │ │ ├── it.txt │ │ ├── nl.py │ │ ├── nl.txt │ │ ├── no.py │ │ ├── no.txt │ │ ├── pt.py │ │ ├── pt.txt │ │ ├── ru.py │ │ ├── ru.txt │ │ ├── sv.py │ │ └── sv.txt │ ├── da.py │ ├── de.py │ ├── en.py │ ├── es.py │ ├── fi.py │ ├── fr.py │ ├── hu.py │ ├── it.py │ ├── ja.py │ ├── minified-js │ │ ├── README.rst │ │ ├── arabic-stemmer.js │ │ ├── armenian-stemmer.js │ │ ├── base-stemmer.js │ │ ├── basque-stemmer.js │ │ ├── catalan-stemmer.js │ │ ├── danish-stemmer.js │ │ ├── dutch-stemmer.js │ │ ├── dutch_porter-stemmer.js │ │ ├── english-stemmer.js │ │ ├── esperanto-stemmer.js │ │ ├── estonian-stemmer.js │ │ ├── finnish-stemmer.js │ │ ├── french-stemmer.js │ │ ├── german-stemmer.js │ │ ├── greek-stemmer.js │ │ ├── hindi-stemmer.js │ │ ├── hungarian-stemmer.js │ │ ├── indonesian-stemmer.js │ │ ├── irish-stemmer.js │ │ ├── italian-stemmer.js │ │ ├── lithuanian-stemmer.js │ │ ├── nepali-stemmer.js │ │ ├── norwegian-stemmer.js │ │ ├── porter-stemmer.js │ │ ├── portuguese-stemmer.js │ │ ├── romanian-stemmer.js │ │ ├── russian-stemmer.js │ │ ├── serbian-stemmer.js │ │ ├── spanish-stemmer.js │ │ ├── swedish-stemmer.js │ │ ├── tamil-stemmer.js │ │ ├── turkish-stemmer.js │ │ └── yiddish-stemmer.js │ ├── nl.py │ ├── no.py │ ├── non-minified-js │ │ ├── arabic-stemmer.js │ │ ├── armenian-stemmer.js │ │ ├── base-stemmer.js │ │ ├── basque-stemmer.js │ │ ├── catalan-stemmer.js │ │ ├── danish-stemmer.js │ │ ├── dutch-stemmer.js │ │ ├── dutch_porter-stemmer.js │ │ ├── english-stemmer.js │ │ ├── esperanto-stemmer.js │ │ ├── estonian-stemmer.js │ │ ├── finnish-stemmer.js │ │ ├── french-stemmer.js │ │ ├── german-stemmer.js │ │ ├── greek-stemmer.js │ │ ├── hindi-stemmer.js │ │ ├── hungarian-stemmer.js │ │ ├── indonesian-stemmer.js │ │ ├── irish-stemmer.js │ │ ├── italian-stemmer.js │ │ ├── lithuanian-stemmer.js │ │ ├── nepali-stemmer.js │ │ ├── norwegian-stemmer.js │ │ ├── porter-stemmer.js │ │ ├── portuguese-stemmer.js │ │ ├── romanian-stemmer.js │ │ ├── russian-stemmer.js │ │ ├── serbian-stemmer.js │ │ ├── spanish-stemmer.js │ │ ├── swedish-stemmer.js │ │ ├── tamil-stemmer.js │ │ ├── turkish-stemmer.js │ │ └── yiddish-stemmer.js │ ├── pt.py │ ├── ro.py │ ├── ru.py │ ├── sv.py │ ├── tr.py │ └── zh.py ├── templates │ ├── apidoc │ │ ├── module.rst.jinja │ │ ├── package.rst.jinja │ │ └── toc.rst.jinja │ ├── epub3 │ │ ├── container.xml │ │ ├── content.opf.jinja │ │ ├── mimetype │ │ ├── nav.xhtml.jinja │ │ └── toc.ncx.jinja │ ├── gettext │ │ └── message.pot.jinja │ ├── graphviz │ │ └── graphviz.css │ ├── htmlhelp │ │ ├── project.hhc │ │ ├── project.hhp │ │ └── project.stp │ ├── imgmath │ │ ├── preview.tex.jinja │ │ └── template.tex.jinja │ ├── latex │ │ ├── latex.tex.jinja │ │ ├── longtable.tex.jinja │ │ ├── sphinxmessages.sty.jinja │ │ ├── tabular.tex.jinja │ │ └── tabulary.tex.jinja │ ├── quickstart │ │ ├── Makefile.new.jinja │ │ ├── conf.py.jinja │ │ ├── make.bat.new.jinja │ │ └── root_doc.rst.jinja │ └── texinfo │ │ └── Makefile ├── testing │ ├── __init__.py │ ├── fixtures.py │ ├── restructuredtext.py │ └── util.py ├── texinputs │ ├── LICRcyr2utf8.xdy │ ├── LICRlatin2utf8.xdy │ ├── LatinRules.xdy │ ├── Makefile.jinja │ ├── latexmkjarc.jinja │ ├── latexmkrc.jinja │ ├── make.bat.jinja │ ├── python.ist │ ├── sphinx.sty │ ├── sphinx.xdy │ ├── sphinxhowto.cls │ ├── sphinxlatexadmonitions.sty │ ├── sphinxlatexcontainers.sty │ ├── sphinxlatexgraphics.sty │ ├── sphinxlatexindbibtoc.sty │ ├── sphinxlatexlists.sty │ ├── sphinxlatexliterals.sty │ ├── sphinxlatexnumfig.sty │ ├── sphinxlatexobjects.sty │ ├── sphinxlatexshadowbox.sty │ ├── sphinxlatexstyleheadings.sty │ ├── sphinxlatexstylepage.sty │ ├── sphinxlatexstyletext.sty │ ├── sphinxlatextables.sty │ ├── sphinxmanual.cls │ ├── sphinxoptionsgeometry.sty │ ├── sphinxoptionshyperref.sty │ ├── sphinxpackageboxes.sty │ ├── sphinxpackagecyrillic.sty │ ├── sphinxpackagefootnote.sty │ └── sphinxpackagesubstitutefont.sty ├── texinputs_win │ └── Makefile.jinja ├── themes │ ├── agogo │ │ ├── layout.html │ │ ├── static │ │ │ ├── agogo.css.jinja │ │ │ ├── bgfooter.png │ │ │ └── bgtop.png │ │ └── theme.toml │ ├── basic │ │ ├── changes │ │ │ ├── frameset.html │ │ │ ├── rstsource.html │ │ │ └── versionchanges.html │ │ ├── defindex.html │ │ ├── domainindex.html │ │ ├── genindex-single.html │ │ ├── genindex-split.html │ │ ├── genindex.html │ │ ├── globaltoc.html │ │ ├── layout.html │ │ ├── localtoc.html │ │ ├── opensearch.xml │ │ ├── page.html │ │ ├── relations.html │ │ ├── search.html │ │ ├── searchbox.html │ │ ├── searchfield.html │ │ ├── sourcelink.html │ │ ├── static │ │ │ ├── basic.css.jinja │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js.jinja │ │ │ ├── file.png │ │ │ ├── language_data.js.jinja │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── searchtools.js │ │ │ └── sphinx_highlight.js │ │ └── theme.toml │ ├── bizstyle │ │ ├── layout.html │ │ ├── static │ │ │ ├── background_b01.png │ │ │ ├── bizstyle.css.jinja │ │ │ ├── bizstyle.js.jinja │ │ │ ├── css3-mediaqueries.js │ │ │ └── css3-mediaqueries_src.js │ │ └── theme.toml │ ├── classic │ │ ├── layout.html │ │ ├── static │ │ │ ├── classic.css.jinja │ │ │ └── sidebar.js.jinja │ │ └── theme.toml │ ├── default │ │ ├── static │ │ │ └── default.css │ │ └── theme.toml │ ├── epub │ │ ├── epub-cover.html │ │ ├── layout.html │ │ ├── static │ │ │ └── epub.css.jinja │ │ └── theme.toml │ ├── haiku │ │ ├── layout.html │ │ ├── static │ │ │ ├── alert_info_32.png │ │ │ ├── alert_warning_32.png │ │ │ ├── bg-page.png │ │ │ ├── bullet_orange.png │ │ │ └── haiku.css.jinja │ │ └── theme.toml │ ├── nature │ │ ├── static │ │ │ └── nature.css.jinja │ │ └── theme.toml │ ├── nonav │ │ ├── layout.html │ │ ├── static │ │ │ └── nonav.css.jinja │ │ └── theme.toml │ ├── pyramid │ │ ├── layout.html │ │ ├── static │ │ │ ├── dialog-note.png │ │ │ ├── dialog-seealso.png │ │ │ ├── dialog-todo.png │ │ │ ├── dialog-topic.png │ │ │ ├── dialog-warning.png │ │ │ ├── epub.css.jinja │ │ │ ├── footerbg.png │ │ │ ├── headerbg.png │ │ │ ├── ie6.css │ │ │ ├── middlebg.png │ │ │ ├── pyramid.css.jinja │ │ │ └── transparent.gif │ │ └── theme.toml │ ├── scrolls │ │ ├── artwork │ │ │ └── logo.svg │ │ ├── layout.html │ │ ├── static │ │ │ ├── darkmetal.png │ │ │ ├── headerbg.png │ │ │ ├── logo.png │ │ │ ├── metal.png │ │ │ ├── navigation.png │ │ │ ├── print.css │ │ │ ├── scrolls.css.jinja │ │ │ ├── theme_extras.js │ │ │ ├── watermark.png │ │ │ └── watermark_blur.png │ │ └── theme.toml │ ├── sphinxdoc │ │ ├── static │ │ │ ├── contents.png │ │ │ ├── navigation.png │ │ │ └── sphinxdoc.css.jinja │ │ └── theme.toml │ └── traditional │ │ ├── static │ │ └── traditional.css.jinja │ │ └── theme.toml ├── theming.py ├── transforms │ ├── __init__.py │ ├── compact_bullet_list.py │ ├── i18n.py │ ├── post_transforms │ │ ├── __init__.py │ │ ├── code.py │ │ └── images.py │ └── references.py ├── util │ ├── __init__.py │ ├── _files.py │ ├── _importer.py │ ├── _inventory_file_reader.py │ ├── _io.py │ ├── _lines.py │ ├── _pathlib.py │ ├── _serialise.py │ ├── _timestamps.py │ ├── _uri.py │ ├── build_phase.py │ ├── cfamily.py │ ├── console.py │ ├── display.py │ ├── docfields.py │ ├── docstrings.py │ ├── docutils.py │ ├── fileutil.py │ ├── http_date.py │ ├── i18n.py │ ├── images.py │ ├── index_entries.py │ ├── inspect.py │ ├── inventory.py │ ├── logging.py │ ├── matching.py │ ├── math.py │ ├── nodes.py │ ├── osutil.py │ ├── parallel.py │ ├── parsing.py │ ├── png.py │ ├── requests.py │ ├── rst.py │ ├── tags.py │ ├── template.py │ ├── texescape.py │ └── typing.py ├── versioning.py └── writers │ ├── __init__.py │ ├── html.py │ ├── html5.py │ ├── latex.py │ ├── manpage.py │ ├── texinfo.py │ ├── text.py │ └── xml.py ├── tests ├── __init__.py ├── certs │ └── cert.pem ├── conftest.py ├── js │ ├── documentation_options.js │ ├── fixtures │ │ ├── cpp │ │ │ └── searchindex.js │ │ ├── multiterm │ │ │ └── searchindex.js │ │ ├── partial │ │ │ └── searchindex.js │ │ └── titles │ │ │ └── searchindex.js │ ├── jasmine-browser.mjs │ ├── language_data.js │ ├── roots │ │ ├── cpp │ │ │ ├── conf.py │ │ │ └── index.rst │ │ ├── multiterm │ │ │ ├── conf.py │ │ │ └── index.rst │ │ ├── partial │ │ │ ├── conf.py │ │ │ └── index.rst │ │ └── titles │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── relevance.py │ │ │ └── relevance.rst │ ├── searchtools.spec.js │ └── sphinx_highlight.spec.js ├── roots │ ├── test-_blank │ │ ├── conf.py │ │ └── index.rst │ ├── test-add_enumerable_node │ │ ├── conf.py │ │ ├── enumerable_node.py │ │ ├── index.rst │ │ └── rimg.png │ ├── test-add_source_parser-conflicts-with-users-setting │ │ ├── conf.py │ │ └── source_parser.py │ ├── test-add_source_parser │ │ ├── conf.py │ │ └── source_parser.py │ ├── test-api-set-translator │ │ ├── conf.py │ │ ├── index.rst │ │ ├── nonext │ │ │ └── conf.py │ │ └── translator.py │ ├── test-basic │ │ ├── conf.py │ │ └── index.rst │ ├── test-build-html-theme-having-multiple-stylesheets │ │ ├── _themes │ │ │ └── mytheme │ │ │ │ ├── _static │ │ │ │ ├── extra.css │ │ │ │ └── mytheme.css │ │ │ │ └── theme.conf │ │ ├── conf.py │ │ └── index.rst │ ├── test-build-text │ │ ├── conf.py │ │ ├── doc1.txt │ │ ├── doc2.txt │ │ ├── index.txt │ │ ├── lineblock.txt │ │ ├── listitems.txt │ │ ├── maxwidth.txt │ │ ├── nonascii_maxwidth.txt │ │ ├── nonascii_table.txt │ │ ├── nonascii_title.txt │ │ ├── table.txt │ │ ├── table_colspan.txt │ │ ├── table_colspan_and_rowspan.txt │ │ ├── table_colspan_left.txt │ │ └── table_rowspan.txt │ ├── test-builder-dirhtml │ │ ├── bar.rst │ │ ├── conf.py │ │ ├── foo │ │ │ ├── foo_1.rst │ │ │ ├── foo_2.rst │ │ │ └── index.rst │ │ └── index.rst │ ├── test-builder-gettext-dont-rebuild-mo │ │ ├── bom.rst │ │ ├── conf.py │ │ ├── index.rst │ │ └── xx │ │ │ └── LC_MESSAGES │ │ │ └── bom.po │ ├── test-changes │ │ ├── base.rst │ │ ├── c-api.rst │ │ ├── conf.py │ │ ├── contents.rst │ │ └── library │ │ │ └── utils.rst │ ├── test-circular │ │ ├── conf.py │ │ ├── index.rst │ │ └── sub.rst │ ├── test-config │ │ └── conf.py │ ├── test-copyright-multiline │ │ ├── conf.py │ │ └── index.rst │ ├── test-default_role │ │ ├── conf.py │ │ ├── foo.rst │ │ └── index.rst │ ├── test-directive-code │ │ ├── caption.rst │ │ ├── classes.rst │ │ ├── conf.py │ │ ├── dedent.rst │ │ ├── emphasize.rst │ │ ├── empty.inc │ │ ├── error.inc │ │ ├── force.rst │ │ ├── highlight.rst │ │ ├── index.rst │ │ ├── linenos.rst │ │ ├── linenothreshold.rst │ │ ├── literal-diff.inc │ │ ├── literal-short.inc │ │ ├── literal.inc │ │ ├── namedblocks.rst │ │ ├── py-decorators.inc │ │ ├── py-decorators.rst │ │ ├── python.rst │ │ └── target.py │ ├── test-directive-csv-table │ │ ├── conf.py │ │ ├── example.csv │ │ └── subdir │ │ │ └── example.csv │ ├── test-directive-include │ │ ├── bar.txt │ │ ├── baz │ │ │ └── baz.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ └── text.txt │ ├── test-directive-only │ │ ├── conf.py │ │ ├── index.rst │ │ └── only.rst │ ├── test-directives-admonition-collapse │ │ ├── conf.py │ │ └── index.rst │ ├── test-directives-raw │ │ ├── conf.py │ │ └── index.rst │ ├── test-docutilsconf │ │ ├── conf.py │ │ ├── docutils.conf │ │ └── index.rst │ ├── test-domain-c-c_maximum_signature_line_length │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-c-intersphinx │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-c │ │ ├── anon-dup-decl.rst │ │ ├── conf.py │ │ ├── field-role.rst │ │ ├── function_param_target.rst │ │ ├── index.rst │ │ ├── namespace.rst │ │ └── ns_lookup.rst │ ├── test-domain-cpp-cpp_maximum_signature_line_length │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-cpp-intersphinx │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-cpp │ │ ├── anon-dup-decl.rst │ │ ├── any-role.rst │ │ ├── backslash.rst │ │ ├── conf.py │ │ ├── field-role.rst │ │ ├── index.rst │ │ ├── lookup-key-overload.rst │ │ ├── multi-decl-lookup.rst │ │ ├── operator-lookup.rst │ │ ├── roles-targets-ok.rst │ │ ├── roles-targets-warn.rst │ │ ├── roles.rst │ │ ├── roles2.rst │ │ ├── semicolon.rst │ │ ├── warn-template-param-qualified-name.rst │ │ └── xref_consistency.rst │ ├── test-domain-js-javascript_maximum_signature_line_length │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-js │ │ ├── conf.py │ │ ├── index.rst │ │ ├── module.rst │ │ └── roles.rst │ ├── test-domain-py-python_maximum_signature_line_length │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-py-python_use_unqualified_type_names │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-py-xref-type-alias │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-py-xref-warning │ │ ├── conf.py │ │ └── index.rst │ ├── test-domain-py │ │ ├── abbr.rst │ │ ├── canonical.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── module.rst │ │ ├── module_option.rst │ │ ├── roles.rst │ │ └── type_alias.rst │ ├── test-double-inheriting-theme │ │ ├── base_themes_dir │ │ │ ├── base_theme1 │ │ │ │ └── theme.conf │ │ │ └── base_theme2 │ │ │ │ └── theme.conf │ │ ├── conf.py │ │ └── index.rst │ ├── test-environment-record-dependencies │ │ ├── api.rst │ │ ├── conf.py │ │ ├── example_module.py │ │ └── index.rst │ ├── test-epub-anchor-id │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-apidoc-custom-templates │ │ ├── _templates │ │ │ ├── module.rst.jinja │ │ │ ├── module.rst_t │ │ │ └── package.rst_t │ │ └── mypackage │ │ │ ├── __init__.py │ │ │ └── mymodule.py │ ├── test-ext-apidoc-duplicates │ │ └── fish_licence │ │ │ ├── halibut.cpython-38-x86_64-linux-gnu.so │ │ │ ├── halibut.pyd │ │ │ ├── halibut.pyi │ │ │ └── halibut.pyx │ ├── test-ext-apidoc-pep420 │ │ └── a │ │ │ └── b │ │ │ ├── c │ │ │ ├── __init__.py │ │ │ └── d.py │ │ │ ├── e │ │ │ ├── __init__.py │ │ │ └── f.py │ │ │ └── x │ │ │ └── y.py │ ├── test-ext-apidoc-subpackage-in-toc │ │ └── parent │ │ │ ├── __init__.py │ │ │ └── child │ │ │ ├── __init__.py │ │ │ └── foo.py │ ├── test-ext-apidoc-toc │ │ └── mypackage │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── no_init │ │ │ └── foo.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── resource.txt │ │ │ └── something │ │ │ └── __init__.py │ ├── test-ext-apidoc-trailing-underscore │ │ └── package_ │ │ │ ├── __init__.py │ │ │ └── module_.py │ ├── test-ext-apidoc │ │ ├── conf.py │ │ ├── index.rst │ │ └── src │ │ │ ├── exclude_package.py │ │ │ └── my_package.py │ ├── test-ext-autodoc │ │ ├── autodoc_dummy_bar.py │ │ ├── autodoc_dummy_module.py │ │ ├── bug2437 │ │ │ ├── __init__.py │ │ │ └── autodoc_dummy_foo.py │ │ ├── circular_import │ │ │ ├── __init__.py │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ └── c.py │ │ ├── conf.py │ │ ├── index.rst │ │ └── target │ │ │ ├── TYPE_CHECKING.py │ │ │ ├── __init__.py │ │ │ ├── _functions_to_import.py │ │ │ ├── abstractmethods.py │ │ │ ├── annotated.py │ │ │ ├── autoclass_content.py │ │ │ ├── autodoc_type_aliases.py │ │ │ ├── bound_method.py │ │ │ ├── cached_property.py │ │ │ ├── callable.py │ │ │ ├── canonical │ │ │ ├── __init__.py │ │ │ └── original.py │ │ │ ├── classes.py │ │ │ ├── coroutine.py │ │ │ ├── cython.pyx │ │ │ ├── decorator.py │ │ │ ├── descriptor.py │ │ │ ├── docstring_signature.py │ │ │ ├── empty_all.py │ │ │ ├── enums.py │ │ │ ├── final.py │ │ │ ├── functions.py │ │ │ ├── generic_class.py │ │ │ ├── genericalias.py │ │ │ ├── hide_value.py │ │ │ ├── imported_members.py │ │ │ ├── inheritance.py │ │ │ ├── inherited_annotations.py │ │ │ ├── instance_variable.py │ │ │ ├── literal.py │ │ │ ├── metadata.py │ │ │ ├── methods.py │ │ │ ├── module.py │ │ │ ├── name_conflict │ │ │ ├── __init__.py │ │ │ └── foo.py │ │ │ ├── name_mangling.py │ │ │ ├── need_mocks.py │ │ │ ├── overload.py │ │ │ ├── overload2.py │ │ │ ├── overload3.py │ │ │ ├── partialfunction.py │ │ │ ├── partialmethod.py │ │ │ ├── pep570.py │ │ │ ├── pep604.py │ │ │ ├── pep695.py │ │ │ ├── preserve_defaults.py │ │ │ ├── preserve_defaults_special_constructs.py │ │ │ ├── private.py │ │ │ ├── process_docstring.py │ │ │ ├── properties.py │ │ │ ├── singledispatch.py │ │ │ ├── singledispatchmethod.py │ │ │ ├── singledispatchmethod_classmethod.py │ │ │ ├── slots.py │ │ │ ├── sort_by_all.py │ │ │ ├── typed_vars.py │ │ │ ├── typehints.py │ │ │ ├── typevar.py │ │ │ ├── uninitialized_attributes.py │ │ │ └── wrappedfunction.py │ ├── test-ext-autosectionlabel-prefix-document │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-autosectionlabel │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-autosummary-ext │ │ ├── conf.py │ │ ├── dummy_module.py │ │ ├── index.rst │ │ ├── sphinx.rst │ │ └── underscore_module_.py │ ├── test-ext-autosummary-filename-map │ │ ├── autosummary_dummy_module.py │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-autosummary-import_cycle │ │ ├── conf.py │ │ ├── index.rst │ │ └── spam │ │ │ ├── __init__.py │ │ │ └── eggs.py │ ├── test-ext-autosummary-imported_members │ │ ├── autosummary_dummy_package │ │ │ ├── __init__.py │ │ │ └── autosummary_dummy_module.py │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-autosummary-mock_imports │ │ ├── conf.py │ │ ├── foo.py │ │ └── index.rst │ ├── test-ext-autosummary-module_all │ │ ├── autosummary_dummy_package_all │ │ │ ├── __init__.py │ │ │ ├── autosummary_dummy_module.py │ │ │ └── extra_dummy_module.py │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-autosummary-module_empty_all │ │ ├── autosummary_dummy_package_empty_all │ │ │ └── __init__.py │ │ ├── conf.py │ │ ├── index.rst │ │ └── templates │ │ │ └── autosummary │ │ │ └── module.rst │ ├── test-ext-autosummary-module_prefix │ │ ├── conf.py │ │ ├── index.rst │ │ └── pkg │ │ │ ├── __init__.py │ │ │ ├── mod0 │ │ │ └── __init__.py │ │ │ └── mod1 │ │ │ └── __init__.py │ ├── test-ext-autosummary-recursive │ │ ├── conf.py │ │ ├── index.rst │ │ ├── package │ │ │ ├── __init__.py │ │ │ ├── module.py │ │ │ ├── module_importfail.py │ │ │ └── package │ │ │ │ ├── __init__.py │ │ │ │ └── module.py │ │ └── package2 │ │ │ ├── __init__.py │ │ │ └── module.py │ ├── test-ext-autosummary-skip-member │ │ ├── conf.py │ │ ├── index.rst │ │ └── target.py │ ├── test-ext-autosummary-template │ │ ├── _templates │ │ │ └── empty.rst │ │ ├── conf.py │ │ ├── index.rst │ │ └── target.py │ ├── test-ext-autosummary │ │ ├── autosummary_class_module.py │ │ ├── autosummary_dummy_inherited_module.py │ │ ├── autosummary_dummy_module.py │ │ ├── autosummary_importfail.py │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-coverage │ │ ├── conf.py │ │ ├── grog │ │ │ ├── __init__.py │ │ │ ├── coverage_ignored.py │ │ │ ├── coverage_missing.py │ │ │ └── coverage_not_ignored.py │ │ └── index.rst │ ├── test-ext-doctest-fail-fast │ │ ├── conf.py │ │ └── fail-fast.txt │ ├── test-ext-doctest-skipif │ │ ├── conf.py │ │ └── skipif.txt │ ├── test-ext-doctest-with-autodoc │ │ ├── conf.py │ │ ├── dir │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ └── inner.rst │ │ ├── foo.py │ │ └── index.rst │ ├── test-ext-doctest │ │ ├── conf.py │ │ └── doctest.txt │ ├── test-ext-extlinks-hardcoded-urls-multiple-replacements │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-extlinks-hardcoded-urls │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-githubpages │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-graphviz │ │ ├── _static │ │ │ └── images │ │ │ │ └── test.svg │ │ ├── conf.py │ │ ├── graph.dot │ │ ├── graph.xx.dot │ │ └── index.rst │ ├── test-ext-ifconfig │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-imgconverter │ │ ├── conf.py │ │ ├── img.pdf │ │ ├── index.rst │ │ └── svgimg.svg │ ├── test-ext-imgmockconverter │ │ ├── 1 │ │ │ └── svgimg.svg │ │ ├── 2 │ │ │ └── svgimg.svg │ │ ├── conf.py │ │ ├── index.rst │ │ └── mocksvgconverter.py │ ├── test-ext-inheritance_diagram │ │ ├── conf.py │ │ ├── example │ │ │ ├── __init__.py │ │ │ └── sphinx.py │ │ ├── external │ │ │ └── other.py │ │ ├── index.rst │ │ ├── subdir │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ └── test.py │ ├── test-ext-intersphinx-cppdomain │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-intersphinx-role │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-math-compat │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-math-duplicate-label │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-math-include │ │ ├── conf.py │ │ ├── included.rst │ │ ├── index.rst │ │ └── math.rst │ ├── test-ext-math-simple │ │ ├── conf.py │ │ └── index.rst │ ├── test-ext-math │ │ ├── _static │ │ │ └── custom_mathjax_config.js │ │ ├── conf.py │ │ ├── index.rst │ │ ├── math.rst │ │ ├── nomath.rst │ │ └── page.rst │ ├── test-ext-napoleon-paramtype │ │ ├── conf.py │ │ ├── index.rst │ │ └── pkg │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ └── foo.py │ ├── test-ext-napoleon │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mypackage │ │ │ ├── __init__.py │ │ │ └── typehints.py │ │ └── typehints.rst │ ├── test-ext-todo │ │ ├── bar.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ └── index.rst │ ├── test-ext-viewcode-find-package │ │ ├── conf.py │ │ ├── index.rst │ │ └── main_package │ │ │ ├── __init__.py │ │ │ └── subpackage │ │ │ ├── __init__.py │ │ │ └── _subpackage2 │ │ │ ├── __init__.py │ │ │ └── submodule.py │ ├── test-ext-viewcode-find │ │ ├── conf.py │ │ ├── index.rst │ │ └── not_a_package │ │ │ ├── __init__.py │ │ │ └── submodule.py │ ├── test-ext-viewcode │ │ ├── conf.py │ │ ├── index.rst │ │ ├── objects.rst │ │ └── spam │ │ │ ├── __init__.py │ │ │ ├── mod1.py │ │ │ ├── mod2.py │ │ │ └── mod3.py │ ├── test-extensions │ │ ├── conf.py │ │ ├── read_parallel.py │ │ ├── read_serial.py │ │ ├── write_parallel.py │ │ └── write_serial.py │ ├── test-footnotes │ │ ├── bar.rst │ │ ├── baz.rst │ │ ├── conf.py │ │ ├── index.rst │ │ └── rimg.png │ ├── test-gettext-custom-output-template │ │ ├── _templates │ │ │ └── message.pot.jinja │ │ ├── conf.py │ │ └── index.rst │ ├── test-gettext-template │ │ ├── _templates │ │ │ ├── template1.html │ │ │ └── template2.html │ │ ├── conf.py │ │ └── index.rst │ ├── test-glossary │ │ ├── conf.py │ │ └── index.rst │ ├── test-highlight_options │ │ ├── conf.py │ │ └── index.rst │ ├── test-html_assets │ │ ├── conf.py │ │ ├── extra │ │ │ ├── .htaccess │ │ │ ├── .htpasswd │ │ │ ├── API.html.jinja │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.rst │ │ │ ├── rimg.png │ │ │ └── subdir │ │ │ │ ├── .htaccess │ │ │ │ └── .htpasswd │ │ ├── index.rst │ │ ├── static │ │ │ ├── .htaccess │ │ │ ├── .htpasswd │ │ │ ├── API.html.jinja │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.rst │ │ │ ├── js │ │ │ │ └── custom.js │ │ │ ├── rimg.png │ │ │ └── subdir │ │ │ │ ├── .htaccess │ │ │ │ └── .htpasswd │ │ └── subdir │ │ │ ├── _build │ │ │ └── index.html │ │ │ └── background.png │ ├── test-html_entity │ │ ├── conf.py │ │ └── index.rst │ ├── test-html_file_checksum │ │ ├── conf.py │ │ ├── index.rst │ │ └── static │ │ │ ├── empty.js │ │ │ ├── script.js │ │ │ ├── stylesheet-a.css │ │ │ └── stylesheet-b.css │ ├── test-html_scaled_image_link │ │ ├── conf.py │ │ ├── img.png │ │ └── index.rst │ ├── test-html_signaturereturn_icon │ │ ├── conf.py │ │ └── index.rst │ ├── test-html_style │ │ ├── _static │ │ │ └── default.css │ │ ├── conf.py │ │ └── index.rst │ ├── test-image-escape │ │ ├── conf.py │ │ ├── img_#1.png │ │ └── index.rst │ ├── test-image-in-parsed-literal │ │ ├── conf.py │ │ ├── index.rst │ │ └── pic.png │ ├── test-image-in-section │ │ ├── conf.py │ │ ├── index.rst │ │ └── pic.png │ ├── test-images │ │ ├── conf.py │ │ ├── img.gif │ │ ├── img.ja.png │ │ ├── img.pdf │ │ ├── img.png │ │ ├── img.zh.png │ │ ├── index.rst │ │ ├── rimg.png │ │ ├── rimg.png.xx │ │ ├── rimg.xx.png │ │ ├── subdir │ │ │ ├── index.rst │ │ │ ├── rimg.png │ │ │ ├── rimg.xx.png │ │ │ ├── svgimg.pdf │ │ │ ├── svgimg.svg │ │ │ └── svgimg.xx.svg │ │ └── testimäge.png │ ├── test-index_on_title │ │ ├── conf.py │ │ └── contents.rst │ ├── test-inheritance │ │ ├── basic_diagram.rst │ │ ├── conf.py │ │ ├── diagram_module_w_2_top_classes.rst │ │ ├── diagram_w_1_top_class.rst │ │ ├── diagram_w_2_top_classes.rst │ │ ├── diagram_w_nested_classes.rst │ │ ├── diagram_w_parts.rst │ │ ├── dummy │ │ │ ├── __init__.py │ │ │ ├── test.py │ │ │ └── test_nested.py │ │ └── index.rst │ ├── test-intl │ │ ├── _templates │ │ │ └── contents.html │ │ ├── admonitions.txt │ │ ├── backslashes.txt │ │ ├── bom.txt │ │ ├── conf.py │ │ ├── definition_terms.txt │ │ ├── docfields.txt │ │ ├── external_links.txt │ │ ├── figure.txt │ │ ├── footnote.txt │ │ ├── glossary_terms.txt │ │ ├── glossary_terms_inconsistency.txt │ │ ├── i18n.png │ │ ├── img.png │ │ ├── index.txt │ │ ├── index_entries.txt │ │ ├── label_target.txt │ │ ├── literalblock.txt │ │ ├── markup.txt │ │ ├── noqa.txt │ │ ├── only.txt │ │ ├── raw.txt │ │ ├── refs.txt │ │ ├── refs_inconsistency.txt │ │ ├── refs_python_domain.txt │ │ ├── refs_reordered.txt │ │ ├── role_xref.txt │ │ ├── rubric.txt │ │ ├── section.txt │ │ ├── seealso.txt │ │ ├── subdir │ │ │ └── index.txt │ │ ├── table.txt │ │ ├── toctree.txt │ │ ├── topic.txt │ │ ├── translation_progress.txt │ │ ├── versionchange.txt │ │ ├── warnings.txt │ │ └── xx │ │ │ └── LC_MESSAGES │ │ │ ├── admonitions.po │ │ │ ├── bom.po │ │ │ ├── definition_terms.po │ │ │ ├── docfields.po │ │ │ ├── external_links.po │ │ │ ├── figure.po │ │ │ ├── footnote.po │ │ │ ├── glossary_terms.po │ │ │ ├── glossary_terms_inconsistency.po │ │ │ ├── index.po │ │ │ ├── index_entries.po │ │ │ ├── label_target.po │ │ │ ├── literalblock.po │ │ │ ├── markup.po │ │ │ ├── noqa.po │ │ │ ├── only.po │ │ │ ├── raw.po │ │ │ ├── refs.po │ │ │ ├── refs_inconsistency.po │ │ │ ├── refs_python_domain.po │ │ │ ├── refs_reordered.po │ │ │ ├── role_xref.po │ │ │ ├── rubric.po │ │ │ ├── section.po │ │ │ ├── seealso.po │ │ │ ├── sphinx.po │ │ │ ├── table.po │ │ │ ├── toctree.po │ │ │ ├── topic.po │ │ │ ├── translation_progress.po │ │ │ ├── versionchange.po │ │ │ └── warnings.po │ ├── test-intl_substitution_definitions │ │ ├── conf.py │ │ ├── i18n.png │ │ ├── img.png │ │ ├── index.rst │ │ ├── prolog_epilog_substitution.rst │ │ ├── prolog_epilog_substitution_excluded.rst │ │ └── xx │ │ │ └── LC_MESSAGES │ │ │ └── prolog_epilog_substitution.po │ ├── test-keep_warnings │ │ ├── conf.py │ │ └── index.rst │ ├── test-latex-babel │ │ ├── bar.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ └── index.rst │ ├── test-latex-container │ │ ├── conf.py │ │ └── index.rst │ ├── test-latex-contents-topic-sidebar │ │ ├── conf.py │ │ └── index.rst │ ├── test-latex-equations │ │ ├── conf.py │ │ ├── equations.rst │ │ └── expects │ │ │ └── latex-equations.tex │ ├── test-latex-figure-in-admonition │ │ ├── conf.py │ │ ├── img.png │ │ └── index.rst │ ├── test-latex-images-css3-lengths │ │ ├── conf.py │ │ ├── img.png │ │ └── index.rst │ ├── test-latex-includegraphics │ │ ├── conf.py │ │ ├── img.png │ │ ├── index.rst │ │ ├── sphinx.png │ │ └── tall.png │ ├── test-latex-index │ │ ├── conf.py │ │ └── index.rst │ ├── test-latex-labels-before-module │ │ ├── automodule1.py │ │ ├── automodule2a.py │ │ ├── automodule2b.py │ │ ├── automodule3.py │ │ ├── conf.py │ │ └── index.rst │ ├── test-latex-labels │ │ ├── conf.py │ │ ├── index.rst │ │ └── otherdoc.rst │ ├── test-latex-numfig │ │ ├── conf.py │ │ ├── index.rst │ │ ├── indexhowto.rst │ │ └── indexmanual.rst │ ├── test-latex-table │ │ ├── _mytemplates │ │ │ └── latex │ │ │ │ ├── longtable.tex.jinja │ │ │ │ └── tabulary.tex_t │ │ ├── complex.rst │ │ ├── conf.py │ │ ├── expects │ │ │ ├── complex_spanning_cell.tex │ │ │ ├── grid_table.tex │ │ │ ├── grid_table_with_tabularcolumns.tex │ │ │ ├── longtable.tex │ │ │ ├── longtable_having_align_option.tex │ │ │ ├── longtable_having_caption.tex │ │ │ ├── longtable_having_formerly_problematic.tex │ │ │ ├── longtable_having_stub_columns_and_formerly_problematic.tex │ │ │ ├── longtable_having_verbatim.tex │ │ │ ├── longtable_having_widths_and_formerly_problematic.tex │ │ │ ├── longtable_having_widths_option.tex │ │ │ ├── longtable_with_tabularcolumns.tex │ │ │ ├── simple_table.tex │ │ │ ├── table_having_caption.tex │ │ │ ├── table_having_formerly_problematic.tex │ │ │ ├── table_having_stub_columns_and_formerly_problematic.tex │ │ │ ├── table_having_three_paragraphs_cell_in_first_col.tex │ │ │ ├── table_having_verbatim.tex │ │ │ ├── table_having_widths_and_formerly_problematic.tex │ │ │ ├── table_having_widths_option.tex │ │ │ ├── table_with_tabularcolumns.tex │ │ │ ├── tabular_having_align_option.tex │ │ │ └── tabulary_having_align_option.tex │ │ ├── index.rst │ │ ├── longtable.rst │ │ └── tabular.rst │ ├── test-latex-theme │ │ ├── conf.py │ │ ├── index.rst │ │ └── theme │ │ │ └── custom │ │ │ └── theme.conf │ ├── test-latex-title │ │ ├── conf.py │ │ └── index.rst │ ├── test-latex-unicode │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-anchors-ignore-for-url │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-anchors-ignore │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-case-check │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-documents_exclude │ │ ├── br0ken_link.rst │ │ ├── broken_link.rst │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-localserver-anchor │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-localserver-https │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-localserver-warn-redirects │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-localserver │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck-raw-node │ │ └── conf.py │ ├── test-linkcheck-too-many-retries │ │ ├── conf.py │ │ └── index.rst │ ├── test-linkcheck │ │ ├── conf.py │ │ └── links.rst │ ├── test-local-logo │ │ ├── conf.py │ │ ├── images │ │ │ └── img.png │ │ └── index.rst │ ├── test-locale │ │ ├── locale1 │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── myext.mo │ │ │ │ │ └── myext.po │ │ │ └── et │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── myext.mo │ │ │ │ └── myext.po │ │ └── locale2 │ │ │ └── en │ │ │ └── LC_MESSAGES │ │ │ ├── myext.mo │ │ │ └── myext.po │ ├── test-manpage_url │ │ ├── conf.py │ │ └── index.rst │ ├── test-markup-citation │ │ ├── conf.py │ │ └── index.rst │ ├── test-markup-rubric │ │ ├── conf.py │ │ └── index.rst │ ├── test-maxlistdepth │ │ ├── conf.py │ │ └── index.rst │ ├── test-metadata │ │ ├── conf.py │ │ └── index.rst │ ├── test-need-escaped │ │ ├── bar.rst │ │ ├── baz.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ ├── index.rst │ │ ├── quux.rst │ │ └── qux.rst │ ├── test-nested-enumerated-list │ │ ├── conf.py │ │ └── index.rst │ ├── test-nested-tables │ │ ├── conf.py │ │ └── index.rst │ ├── test-nitpicky-warnings │ │ ├── conf.py │ │ └── index.rst │ ├── test-numbered-circular │ │ ├── conf.py │ │ ├── index.rst │ │ └── sub.rst │ ├── test-numfig │ │ ├── bar.rst │ │ ├── baz.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ ├── index.rst │ │ └── rimg.png │ ├── test-object-description-sections │ │ ├── conf.py │ │ └── index.rst │ ├── test-productionlist │ │ ├── Bare.rst │ │ ├── Dup1.rst │ │ ├── Dup2.rst │ │ ├── LineContinuation.rst │ │ ├── P1.rst │ │ ├── P2.rst │ │ ├── conf.py │ │ ├── firstLineRule.rst │ │ └── index.rst │ ├── test-prolog │ │ ├── conf.py │ │ ├── index.rst │ │ ├── markdown.md │ │ ├── prolog_markdown_parser.py │ │ └── restructuredtext.rst │ ├── test-pycode │ │ └── cp_1251_coded.py │ ├── test-reST-code-block │ │ ├── conf.py │ │ └── index.rst │ ├── test-reST-code-role │ │ ├── conf.py │ │ └── index.rst │ ├── test-refonly_bullet_list │ │ ├── conf.py │ │ └── index.rst │ ├── test-remote-logo │ │ ├── conf.py │ │ └── index.rst │ ├── test-roles-download │ │ ├── another │ │ │ └── dummy.dat │ │ ├── conf.py │ │ ├── dummy.dat │ │ └── index.rst │ ├── test-root │ │ ├── Makefile │ │ ├── _templates │ │ │ ├── contentssb.html │ │ │ ├── customsb.html │ │ │ └── layout.html │ │ ├── autodoc.txt │ │ ├── autodoc_target.py │ │ ├── bom.txt │ │ ├── conf.py │ │ ├── extapi.txt │ │ ├── extensions.txt │ │ ├── file_with_special_#_chars.xyz │ │ ├── footnote.txt │ │ ├── images.txt │ │ ├── img.foo.png │ │ ├── img.gif │ │ ├── img.pdf │ │ ├── img.png │ │ ├── includes.txt │ │ ├── index.txt │ │ ├── lists.txt │ │ ├── literal.inc │ │ ├── literal_orig.inc │ │ ├── markup.txt │ │ ├── math.txt │ │ ├── objects.txt │ │ ├── otherext.foo │ │ ├── parsermod.py │ │ ├── quotes.inc │ │ ├── rimg.png │ │ ├── special │ │ │ ├── api.h │ │ │ └── code.py │ │ ├── subdir │ │ │ ├── excluded.txt │ │ │ ├── images.txt │ │ │ ├── img.png │ │ │ ├── include.inc │ │ │ ├── includes.txt │ │ │ └── simg.png │ │ ├── svgimg.pdf │ │ ├── svgimg.svg │ │ ├── tabs.inc │ │ ├── test.inc │ │ └── wrongenc.inc │ ├── test-search │ │ ├── conf.py │ │ ├── escapedtitle.rst │ │ ├── index.rst │ │ ├── nosearch.rst │ │ └── tocitem.rst │ ├── test-smartquotes │ │ ├── conf.py │ │ ├── index.rst │ │ └── literals.rst │ ├── test-stylesheets │ │ ├── _templates │ │ │ └── layout.html │ │ ├── conf.py │ │ └── index.rst │ ├── test-templating │ │ ├── _templates │ │ │ ├── autosummary │ │ │ │ └── class.rst │ │ │ └── layout.html │ │ ├── autosummary_templating.txt │ │ ├── conf.py │ │ └── index.txt │ ├── test-theming │ │ ├── child.zip │ │ ├── conf.py │ │ ├── index.rst │ │ ├── parent.zip │ │ ├── test_theme │ │ │ ├── __init__.py │ │ │ ├── staticfiles │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ ├── legacytmpl.html_t │ │ │ │ │ ├── staticimg.png │ │ │ │ │ └── statictmpl.html.jinja │ │ │ │ └── theme.conf │ │ │ └── test-theme │ │ │ │ └── theme.conf │ │ └── ziptheme.zip │ ├── test-tocdepth │ │ ├── bar.rst │ │ ├── baz.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ └── index.rst │ ├── test-toctree-domain-objects │ │ ├── conf.py │ │ ├── document_scoping.rst │ │ ├── domains.rst │ │ └── index.rst │ ├── test-toctree-duplicated │ │ ├── conf.py │ │ ├── foo.rst │ │ └── index.rst │ ├── test-toctree-empty │ │ ├── _templates │ │ │ └── localtoc.html │ │ ├── conf.py │ │ └── index.rst │ ├── test-toctree-glob │ │ ├── bar │ │ │ ├── bar_1.rst │ │ │ ├── bar_2.rst │ │ │ ├── bar_3.rst │ │ │ ├── bar_4 │ │ │ │ └── index.rst │ │ │ └── index.rst │ │ ├── baz.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ ├── index.rst │ │ ├── quux.rst │ │ └── qux │ │ │ ├── index.rst │ │ │ ├── qux_1.rst │ │ │ └── qux_2.rst │ ├── test-toctree-index │ │ ├── conf.py │ │ ├── foo.rst │ │ └── index.rst │ ├── test-toctree-maxdepth │ │ ├── bar.rst │ │ ├── baz.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ ├── index.rst │ │ └── qux.rst │ ├── test-toctree-multiple-parents │ │ ├── alpha.rst │ │ ├── bravo.rst │ │ ├── charlie.rst │ │ ├── conf.py │ │ ├── delta.rst │ │ ├── index.rst │ │ └── relation_graph.txt │ ├── test-toctree-only │ │ ├── conf.py │ │ └── index.rst │ ├── test-toctree │ │ ├── bar.rst │ │ ├── baz.rst │ │ ├── conf.py │ │ ├── foo.rst │ │ ├── index.rst │ │ ├── quux.rst │ │ ├── qux.rst │ │ └── tocdepth.rst │ ├── test-transforms-post_transforms-keyboard │ │ ├── conf.py │ │ └── index.rst │ ├── test-transforms-post_transforms-missing-reference │ │ ├── conf.py │ │ └── index.rst │ ├── test-trim_doctest_flags │ │ ├── conf.py │ │ └── index.rst │ ├── test-util-copyasset_overwrite │ │ ├── conf.py │ │ ├── index.rst │ │ ├── myext.py │ │ ├── myext_static │ │ │ └── custom-styles.css │ │ └── user_static │ │ │ └── custom-styles.css │ ├── test-versioning │ │ ├── added.txt │ │ ├── conf.py │ │ ├── deleted.txt │ │ ├── deleted_end.txt │ │ ├── index.txt │ │ ├── insert.txt │ │ ├── insert_beginning.txt │ │ ├── insert_similar.txt │ │ ├── modified.txt │ │ └── original.txt │ └── test-warnings │ │ ├── autodoc_fodder.py │ │ ├── conf.py │ │ ├── index.rst │ │ ├── svgimg.pdf │ │ ├── svgimg.svg │ │ └── wrongenc.inc ├── test__cli │ ├── __init__.py │ └── test__cli_util_errors.py ├── test_addnodes.py ├── test_application.py ├── test_builders │ ├── __init__.py │ ├── conftest.py │ ├── test_build.py │ ├── test_build_all.py │ ├── test_build_changes.py │ ├── test_build_dirhtml.py │ ├── test_build_epub.py │ ├── test_build_gettext.py │ ├── test_build_html.py │ ├── test_build_html_5_output.py │ ├── test_build_html_assets.py │ ├── test_build_html_code.py │ ├── test_build_html_copyright.py │ ├── test_build_html_download.py │ ├── test_build_html_highlight.py │ ├── test_build_html_image.py │ ├── test_build_html_maths.py │ ├── test_build_html_numfig.py │ ├── test_build_html_tocdepth.py │ ├── test_build_html_toctree.py │ ├── test_build_latex.py │ ├── test_build_linkcheck.py │ ├── test_build_manpage.py │ ├── test_build_texinfo.py │ ├── test_build_text.py │ ├── test_build_warnings.py │ ├── test_incremental_reading.py │ ├── xpath_data.py │ ├── xpath_html_util.py │ └── xpath_util.py ├── test_command_line.py ├── test_config │ ├── __init__.py │ ├── test_config.py │ └── test_copyright.py ├── test_directives │ ├── __init__.py │ ├── test_directive_code.py │ ├── test_directive_object_description.py │ ├── test_directive_only.py │ ├── test_directive_option.py │ ├── test_directive_other.py │ ├── test_directive_patch.py │ ├── test_directive_productionlist.py │ └── test_directives_no_typesetting.py ├── test_domains │ ├── __init__.py │ ├── test_domain_c.py │ ├── test_domain_cpp.py │ ├── test_domain_js.py │ ├── test_domain_py.py │ ├── test_domain_py_canonical.py │ ├── test_domain_py_fields.py │ ├── test_domain_py_pyfunction.py │ ├── test_domain_py_pyobject.py │ ├── test_domain_rst.py │ └── test_domain_std.py ├── test_environment │ ├── __init__.py │ ├── test_environment.py │ ├── test_environment_indexentries.py │ ├── test_environment_record_dependencies.py │ └── test_environment_toctree.py ├── test_errors.py ├── test_events.py ├── test_ext_autodoc │ ├── __init__.py │ ├── autodoc_util.py │ ├── conftest.py │ ├── test_ext_autodoc.py │ ├── test_ext_autodoc_autoattribute.py │ ├── test_ext_autodoc_autoclass.py │ ├── test_ext_autodoc_autodata.py │ ├── test_ext_autodoc_autofunction.py │ ├── test_ext_autodoc_automodule.py │ ├── test_ext_autodoc_autoproperty.py │ ├── test_ext_autodoc_configs.py │ ├── test_ext_autodoc_events.py │ ├── test_ext_autodoc_importer.py │ ├── test_ext_autodoc_mock.py │ ├── test_ext_autodoc_names.py │ ├── test_ext_autodoc_preserve_defaults.py │ ├── test_ext_autodoc_private_members.py │ ├── test_ext_autodoc_signatures.py │ └── test_ext_autodoc_typehints.py ├── test_ext_autosummary │ ├── __init__.py │ ├── test_ext_autosummary.py │ └── test_ext_autosummary_imports.py ├── test_ext_imgconverter │ ├── __init__.py │ ├── test_ext_imgconverter.py │ └── test_ext_imgmockconverter.py ├── test_ext_intersphinx │ ├── __init__.py │ ├── test_ext_intersphinx.py │ └── test_ext_intersphinx_cache.py ├── test_ext_napoleon │ ├── __init__.py │ ├── pep526_data_google.py │ ├── pep526_data_numpy.py │ ├── test_ext_napoleon.py │ └── test_ext_napoleon_docstring.py ├── test_extensions │ ├── __init__.py │ ├── test_ext_apidoc.py │ ├── test_ext_autosectionlabel.py │ ├── test_ext_coverage.py │ ├── test_ext_doctest.py │ ├── test_ext_duration.py │ ├── test_ext_extlinks.py │ ├── test_ext_githubpages.py │ ├── test_ext_graphviz.py │ ├── test_ext_ifconfig.py │ ├── test_ext_inheritance_diagram.py │ ├── test_ext_math.py │ ├── test_ext_todo.py │ ├── test_ext_viewcode.py │ └── test_extension.py ├── test_highlighting.py ├── test_intl │ ├── __init__.py │ ├── test_catalogs.py │ ├── test_intl.py │ └── test_locale.py ├── test_markup │ ├── __init__.py │ ├── test_markup.py │ ├── test_metadata.py │ ├── test_parser.py │ └── test_smartquotes.py ├── test_project.py ├── test_pycode │ ├── __init__.py │ ├── test_pycode.py │ ├── test_pycode_ast.py │ └── test_pycode_parser.py ├── test_quickstart.py ├── test_roles.py ├── test_search.py ├── test_theming │ ├── __init__.py │ ├── test_html_theme.py │ ├── test_templating.py │ ├── test_theming.py │ ├── theme.conf │ └── theme.toml ├── test_transforms │ ├── __init__.py │ ├── test_transforms_move_module_targets.py │ ├── test_transforms_post_transforms.py │ ├── test_transforms_post_transforms_code.py │ ├── test_transforms_post_transforms_images.py │ ├── test_transforms_reorder_nodes.py │ └── test_unreferenced_footnotes.py ├── test_util │ ├── __init__.py │ ├── intersphinx_data.py │ ├── test_util.py │ ├── test_util_display.py │ ├── test_util_docstrings.py │ ├── test_util_docutils.py │ ├── test_util_docutils_sphinx_directive.py │ ├── test_util_fileutil.py │ ├── test_util_i18n.py │ ├── test_util_images.py │ ├── test_util_importer.py │ ├── test_util_inspect.py │ ├── test_util_inspect_py314.py │ ├── test_util_inventory.py │ ├── test_util_lines.py │ ├── test_util_logging.py │ ├── test_util_matching.py │ ├── test_util_nodes.py │ ├── test_util_rst.py │ ├── test_util_template.py │ ├── test_util_typing.py │ ├── test_util_uri.py │ └── typing_test_data.py ├── test_versioning.py ├── test_writers │ ├── __init__.py │ ├── test_api_translator.py │ ├── test_docutilsconf.py │ ├── test_writer_latex.py │ └── test_writer_text.py └── utils.py ├── tox.ini ├── ty.toml ├── utils ├── CHANGES_template.rst ├── __init__.py ├── babel_runner.py ├── bump_docker.py ├── bump_version.py ├── convert_attestations.py ├── generate_js_fixtures.py ├── generate_snowball.py └── release-checklist.rst └── uv.lock /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/builddoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/workflows/builddoc.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/transifex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.github/workflows/transifex.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.mailmap -------------------------------------------------------------------------------- /.prettierrc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.prettierrc.toml -------------------------------------------------------------------------------- /.pytest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.pytest.toml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/.ruff.toml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /EXAMPLES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/EXAMPLES.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/bindep.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/Makefile -------------------------------------------------------------------------------- /doc/_static/bookcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/bookcover.png -------------------------------------------------------------------------------- /doc/_static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/favicon.svg -------------------------------------------------------------------------------- /doc/_static/jupyter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/jupyter-logo.png -------------------------------------------------------------------------------- /doc/_static/linux-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/linux-logo.png -------------------------------------------------------------------------------- /doc/_static/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/python-logo.png -------------------------------------------------------------------------------- /doc/_static/sphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/sphinx.png -------------------------------------------------------------------------------- /doc/_static/themes/agogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/agogo.png -------------------------------------------------------------------------------- /doc/_static/themes/alabaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/alabaster.png -------------------------------------------------------------------------------- /doc/_static/themes/bizstyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/bizstyle.png -------------------------------------------------------------------------------- /doc/_static/themes/classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/classic.png -------------------------------------------------------------------------------- /doc/_static/themes/fullsize/agogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/fullsize/agogo.png -------------------------------------------------------------------------------- /doc/_static/themes/fullsize/haiku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/fullsize/haiku.png -------------------------------------------------------------------------------- /doc/_static/themes/haiku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/haiku.png -------------------------------------------------------------------------------- /doc/_static/themes/nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/nature.png -------------------------------------------------------------------------------- /doc/_static/themes/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/pyramid.png -------------------------------------------------------------------------------- /doc/_static/themes/scrolls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/scrolls.png -------------------------------------------------------------------------------- /doc/_static/themes/sphinxdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/sphinxdoc.png -------------------------------------------------------------------------------- /doc/_static/themes/traditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/themes/traditional.png -------------------------------------------------------------------------------- /doc/_static/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/translation.png -------------------------------------------------------------------------------- /doc/_static/translation.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/translation.puml -------------------------------------------------------------------------------- /doc/_static/translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/translation.svg -------------------------------------------------------------------------------- /doc/_static/tutorial/lumache-furo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_static/tutorial/lumache-furo.png -------------------------------------------------------------------------------- /doc/_templates/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_templates/contents.html -------------------------------------------------------------------------------- /doc/_themes/sphinx13/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_themes/sphinx13/layout.html -------------------------------------------------------------------------------- /doc/_themes/sphinx13/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/_themes/sphinx13/theme.toml -------------------------------------------------------------------------------- /doc/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/authors.rst -------------------------------------------------------------------------------- /doc/changes/0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/0.1.rst -------------------------------------------------------------------------------- /doc/changes/0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/0.2.rst -------------------------------------------------------------------------------- /doc/changes/0.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/0.3.rst -------------------------------------------------------------------------------- /doc/changes/0.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/0.4.rst -------------------------------------------------------------------------------- /doc/changes/0.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/0.5.rst -------------------------------------------------------------------------------- /doc/changes/0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/0.6.rst -------------------------------------------------------------------------------- /doc/changes/1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.0.rst -------------------------------------------------------------------------------- /doc/changes/1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.1.rst -------------------------------------------------------------------------------- /doc/changes/1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.2.rst -------------------------------------------------------------------------------- /doc/changes/1.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.3.rst -------------------------------------------------------------------------------- /doc/changes/1.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.4.rst -------------------------------------------------------------------------------- /doc/changes/1.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.5.rst -------------------------------------------------------------------------------- /doc/changes/1.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.6.rst -------------------------------------------------------------------------------- /doc/changes/1.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.7.rst -------------------------------------------------------------------------------- /doc/changes/1.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/1.8.rst -------------------------------------------------------------------------------- /doc/changes/2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/2.0.rst -------------------------------------------------------------------------------- /doc/changes/2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/2.1.rst -------------------------------------------------------------------------------- /doc/changes/2.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/2.2.rst -------------------------------------------------------------------------------- /doc/changes/2.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/2.3.rst -------------------------------------------------------------------------------- /doc/changes/2.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/2.4.rst -------------------------------------------------------------------------------- /doc/changes/3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/3.0.rst -------------------------------------------------------------------------------- /doc/changes/3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/3.1.rst -------------------------------------------------------------------------------- /doc/changes/3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/3.2.rst -------------------------------------------------------------------------------- /doc/changes/3.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/3.3.rst -------------------------------------------------------------------------------- /doc/changes/3.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/3.4.rst -------------------------------------------------------------------------------- /doc/changes/3.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/3.5.rst -------------------------------------------------------------------------------- /doc/changes/4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/4.0.rst -------------------------------------------------------------------------------- /doc/changes/4.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/4.1.rst -------------------------------------------------------------------------------- /doc/changes/4.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/4.2.rst -------------------------------------------------------------------------------- /doc/changes/4.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/4.3.rst -------------------------------------------------------------------------------- /doc/changes/4.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/4.4.rst -------------------------------------------------------------------------------- /doc/changes/4.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/4.5.rst -------------------------------------------------------------------------------- /doc/changes/5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/5.0.rst -------------------------------------------------------------------------------- /doc/changes/5.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/5.1.rst -------------------------------------------------------------------------------- /doc/changes/5.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/5.2.rst -------------------------------------------------------------------------------- /doc/changes/5.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/5.3.rst -------------------------------------------------------------------------------- /doc/changes/6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/6.0.rst -------------------------------------------------------------------------------- /doc/changes/6.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/6.1.rst -------------------------------------------------------------------------------- /doc/changes/6.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/6.2.rst -------------------------------------------------------------------------------- /doc/changes/7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/7.0.rst -------------------------------------------------------------------------------- /doc/changes/7.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/7.1.rst -------------------------------------------------------------------------------- /doc/changes/7.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/7.2.rst -------------------------------------------------------------------------------- /doc/changes/7.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/7.3.rst -------------------------------------------------------------------------------- /doc/changes/7.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/7.4.rst -------------------------------------------------------------------------------- /doc/changes/8.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/8.0.rst -------------------------------------------------------------------------------- /doc/changes/8.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/8.1.rst -------------------------------------------------------------------------------- /doc/changes/8.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/8.2.rst -------------------------------------------------------------------------------- /doc/changes/9.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/9.0.rst -------------------------------------------------------------------------------- /doc/changes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/changes/index.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/development/howtos/builders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/development/howtos/builders.rst -------------------------------------------------------------------------------- /doc/development/howtos/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/development/howtos/index.rst -------------------------------------------------------------------------------- /doc/development/html_themes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/development/html_themes/index.rst -------------------------------------------------------------------------------- /doc/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/development/index.rst -------------------------------------------------------------------------------- /doc/development/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/development/tutorials/index.rst -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/extdev/appapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/appapi.rst -------------------------------------------------------------------------------- /doc/extdev/builderapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/builderapi.rst -------------------------------------------------------------------------------- /doc/extdev/collectorapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/collectorapi.rst -------------------------------------------------------------------------------- /doc/extdev/deprecated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/deprecated.rst -------------------------------------------------------------------------------- /doc/extdev/domainapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/domainapi.rst -------------------------------------------------------------------------------- /doc/extdev/envapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/envapi.rst -------------------------------------------------------------------------------- /doc/extdev/event_callbacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/event_callbacks.rst -------------------------------------------------------------------------------- /doc/extdev/eventapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/eventapi.rst -------------------------------------------------------------------------------- /doc/extdev/i18n.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/i18n.rst -------------------------------------------------------------------------------- /doc/extdev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/index.rst -------------------------------------------------------------------------------- /doc/extdev/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/logging.rst -------------------------------------------------------------------------------- /doc/extdev/markupapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/markupapi.rst -------------------------------------------------------------------------------- /doc/extdev/nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/nodes.rst -------------------------------------------------------------------------------- /doc/extdev/parserapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/parserapi.rst -------------------------------------------------------------------------------- /doc/extdev/projectapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/projectapi.rst -------------------------------------------------------------------------------- /doc/extdev/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/testing.rst -------------------------------------------------------------------------------- /doc/extdev/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/extdev/utils.rst -------------------------------------------------------------------------------- /doc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/faq.rst -------------------------------------------------------------------------------- /doc/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/glossary.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/internals/code-of-conduct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/internals/code-of-conduct.rst -------------------------------------------------------------------------------- /doc/internals/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/internals/contributing.rst -------------------------------------------------------------------------------- /doc/internals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/internals/index.rst -------------------------------------------------------------------------------- /doc/internals/organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/internals/organization.rst -------------------------------------------------------------------------------- /doc/internals/release-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/internals/release-process.rst -------------------------------------------------------------------------------- /doc/latex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/latex.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/man/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/man/index.rst -------------------------------------------------------------------------------- /doc/man/sphinx-apidoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/man/sphinx-apidoc.rst -------------------------------------------------------------------------------- /doc/man/sphinx-autogen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/man/sphinx-autogen.rst -------------------------------------------------------------------------------- /doc/man/sphinx-build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/man/sphinx-build.rst -------------------------------------------------------------------------------- /doc/man/sphinx-quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/man/sphinx-quickstart.rst -------------------------------------------------------------------------------- /doc/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/support.rst -------------------------------------------------------------------------------- /doc/tutorial/deploying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/tutorial/deploying.rst -------------------------------------------------------------------------------- /doc/tutorial/describing-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/tutorial/describing-code.rst -------------------------------------------------------------------------------- /doc/tutorial/end.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/tutorial/end.rst -------------------------------------------------------------------------------- /doc/tutorial/first-steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/tutorial/first-steps.rst -------------------------------------------------------------------------------- /doc/tutorial/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/tutorial/getting-started.rst -------------------------------------------------------------------------------- /doc/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/tutorial/index.rst -------------------------------------------------------------------------------- /doc/usage/advanced/intl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/advanced/intl.rst -------------------------------------------------------------------------------- /doc/usage/advanced/websupport/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/advanced/websupport/api.rst -------------------------------------------------------------------------------- /doc/usage/builders/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/builders/index.rst -------------------------------------------------------------------------------- /doc/usage/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/configuration.rst -------------------------------------------------------------------------------- /doc/usage/domains/c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/domains/c.rst -------------------------------------------------------------------------------- /doc/usage/domains/cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/domains/cpp.rst -------------------------------------------------------------------------------- /doc/usage/domains/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/domains/index.rst -------------------------------------------------------------------------------- /doc/usage/domains/javascript.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/domains/javascript.rst -------------------------------------------------------------------------------- /doc/usage/domains/mathematics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/domains/mathematics.rst -------------------------------------------------------------------------------- /doc/usage/domains/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/domains/python.rst -------------------------------------------------------------------------------- /doc/usage/domains/standard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/domains/standard.rst -------------------------------------------------------------------------------- /doc/usage/extensions/apidoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/apidoc.rst -------------------------------------------------------------------------------- /doc/usage/extensions/autodoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/autodoc.rst -------------------------------------------------------------------------------- /doc/usage/extensions/autosummary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/autosummary.rst -------------------------------------------------------------------------------- /doc/usage/extensions/coverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/coverage.rst -------------------------------------------------------------------------------- /doc/usage/extensions/doctest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/doctest.rst -------------------------------------------------------------------------------- /doc/usage/extensions/duration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/duration.rst -------------------------------------------------------------------------------- /doc/usage/extensions/example_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/example_numpy.py -------------------------------------------------------------------------------- /doc/usage/extensions/extlinks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/extlinks.rst -------------------------------------------------------------------------------- /doc/usage/extensions/githubpages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/githubpages.rst -------------------------------------------------------------------------------- /doc/usage/extensions/graphviz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/graphviz.rst -------------------------------------------------------------------------------- /doc/usage/extensions/ifconfig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/ifconfig.rst -------------------------------------------------------------------------------- /doc/usage/extensions/imgconverter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/imgconverter.rst -------------------------------------------------------------------------------- /doc/usage/extensions/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/index.rst -------------------------------------------------------------------------------- /doc/usage/extensions/inheritance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/inheritance.rst -------------------------------------------------------------------------------- /doc/usage/extensions/intersphinx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/intersphinx.rst -------------------------------------------------------------------------------- /doc/usage/extensions/linkcode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/linkcode.rst -------------------------------------------------------------------------------- /doc/usage/extensions/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/math.rst -------------------------------------------------------------------------------- /doc/usage/extensions/napoleon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/napoleon.rst -------------------------------------------------------------------------------- /doc/usage/extensions/todo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/todo.rst -------------------------------------------------------------------------------- /doc/usage/extensions/viewcode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/extensions/viewcode.rst -------------------------------------------------------------------------------- /doc/usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/index.rst -------------------------------------------------------------------------------- /doc/usage/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/installation.rst -------------------------------------------------------------------------------- /doc/usage/markdown.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/markdown.rst -------------------------------------------------------------------------------- /doc/usage/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/quickstart.rst -------------------------------------------------------------------------------- /doc/usage/referencing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/referencing.rst -------------------------------------------------------------------------------- /doc/usage/restructuredtext/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/restructuredtext/basics.rst -------------------------------------------------------------------------------- /doc/usage/restructuredtext/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/restructuredtext/index.rst -------------------------------------------------------------------------------- /doc/usage/restructuredtext/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/restructuredtext/roles.rst -------------------------------------------------------------------------------- /doc/usage/theming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/doc/usage/theming.rst -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrefly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/pyrefly.toml -------------------------------------------------------------------------------- /sphinx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/__init__.py -------------------------------------------------------------------------------- /sphinx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/__main__.py -------------------------------------------------------------------------------- /sphinx/_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/_cli/__init__.py -------------------------------------------------------------------------------- /sphinx/_cli/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinx/_cli/util/colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/_cli/util/colour.py -------------------------------------------------------------------------------- /sphinx/_cli/util/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/_cli/util/errors.py -------------------------------------------------------------------------------- /sphinx/addnodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/addnodes.py -------------------------------------------------------------------------------- /sphinx/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/application.py -------------------------------------------------------------------------------- /sphinx/builders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/__init__.py -------------------------------------------------------------------------------- /sphinx/builders/_epub_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/_epub_base.py -------------------------------------------------------------------------------- /sphinx/builders/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/changes.py -------------------------------------------------------------------------------- /sphinx/builders/dirhtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/dirhtml.py -------------------------------------------------------------------------------- /sphinx/builders/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/dummy.py -------------------------------------------------------------------------------- /sphinx/builders/epub3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/epub3.py -------------------------------------------------------------------------------- /sphinx/builders/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/gettext.py -------------------------------------------------------------------------------- /sphinx/builders/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/html/__init__.py -------------------------------------------------------------------------------- /sphinx/builders/html/_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/html/_assets.py -------------------------------------------------------------------------------- /sphinx/builders/html/_build_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/html/_build_info.py -------------------------------------------------------------------------------- /sphinx/builders/latex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/latex/__init__.py -------------------------------------------------------------------------------- /sphinx/builders/latex/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/latex/constants.py -------------------------------------------------------------------------------- /sphinx/builders/latex/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/latex/nodes.py -------------------------------------------------------------------------------- /sphinx/builders/latex/theming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/latex/theming.py -------------------------------------------------------------------------------- /sphinx/builders/latex/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/latex/transforms.py -------------------------------------------------------------------------------- /sphinx/builders/latex/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/latex/util.py -------------------------------------------------------------------------------- /sphinx/builders/linkcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/linkcheck.py -------------------------------------------------------------------------------- /sphinx/builders/manpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/manpage.py -------------------------------------------------------------------------------- /sphinx/builders/singlehtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/singlehtml.py -------------------------------------------------------------------------------- /sphinx/builders/texinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/texinfo.py -------------------------------------------------------------------------------- /sphinx/builders/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/text.py -------------------------------------------------------------------------------- /sphinx/builders/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/builders/xml.py -------------------------------------------------------------------------------- /sphinx/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules for command line executables.""" 2 | -------------------------------------------------------------------------------- /sphinx/cmd/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/cmd/build.py -------------------------------------------------------------------------------- /sphinx/cmd/make_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/cmd/make_mode.py -------------------------------------------------------------------------------- /sphinx/cmd/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/cmd/quickstart.py -------------------------------------------------------------------------------- /sphinx/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/config.py -------------------------------------------------------------------------------- /sphinx/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/deprecation.py -------------------------------------------------------------------------------- /sphinx/directives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/directives/__init__.py -------------------------------------------------------------------------------- /sphinx/directives/admonitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/directives/admonitions.py -------------------------------------------------------------------------------- /sphinx/directives/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/directives/code.py -------------------------------------------------------------------------------- /sphinx/directives/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/directives/other.py -------------------------------------------------------------------------------- /sphinx/directives/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/directives/patches.py -------------------------------------------------------------------------------- /sphinx/domains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/__init__.py -------------------------------------------------------------------------------- /sphinx/domains/_domains_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/_domains_container.py -------------------------------------------------------------------------------- /sphinx/domains/_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/_index.py -------------------------------------------------------------------------------- /sphinx/domains/c/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/c/__init__.py -------------------------------------------------------------------------------- /sphinx/domains/c/_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/c/_ast.py -------------------------------------------------------------------------------- /sphinx/domains/c/_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/c/_ids.py -------------------------------------------------------------------------------- /sphinx/domains/c/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/c/_parser.py -------------------------------------------------------------------------------- /sphinx/domains/c/_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/c/_symbol.py -------------------------------------------------------------------------------- /sphinx/domains/changeset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/changeset.py -------------------------------------------------------------------------------- /sphinx/domains/citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/citation.py -------------------------------------------------------------------------------- /sphinx/domains/cpp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/cpp/__init__.py -------------------------------------------------------------------------------- /sphinx/domains/cpp/_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/cpp/_ast.py -------------------------------------------------------------------------------- /sphinx/domains/cpp/_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/cpp/_ids.py -------------------------------------------------------------------------------- /sphinx/domains/cpp/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/cpp/_parser.py -------------------------------------------------------------------------------- /sphinx/domains/cpp/_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/cpp/_symbol.py -------------------------------------------------------------------------------- /sphinx/domains/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/index.py -------------------------------------------------------------------------------- /sphinx/domains/javascript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/javascript.py -------------------------------------------------------------------------------- /sphinx/domains/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/math.py -------------------------------------------------------------------------------- /sphinx/domains/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/python/__init__.py -------------------------------------------------------------------------------- /sphinx/domains/python/_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/python/_annotations.py -------------------------------------------------------------------------------- /sphinx/domains/python/_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/python/_object.py -------------------------------------------------------------------------------- /sphinx/domains/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/rst.py -------------------------------------------------------------------------------- /sphinx/domains/std/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/domains/std/__init__.py -------------------------------------------------------------------------------- /sphinx/environment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/environment/__init__.py -------------------------------------------------------------------------------- /sphinx/environment/adapters/__init__.py: -------------------------------------------------------------------------------- 1 | """Sphinx environment adapters""" 2 | -------------------------------------------------------------------------------- /sphinx/environment/adapters/asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/environment/adapters/asset.py -------------------------------------------------------------------------------- /sphinx/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/errors.py -------------------------------------------------------------------------------- /sphinx/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/events.py -------------------------------------------------------------------------------- /sphinx/ext/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains Sphinx features not activated by default.""" 2 | -------------------------------------------------------------------------------- /sphinx/ext/apidoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/apidoc/__init__.py -------------------------------------------------------------------------------- /sphinx/ext/apidoc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/apidoc/__main__.py -------------------------------------------------------------------------------- /sphinx/ext/apidoc/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/apidoc/_cli.py -------------------------------------------------------------------------------- /sphinx/ext/apidoc/_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/apidoc/_extension.py -------------------------------------------------------------------------------- /sphinx/ext/apidoc/_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/apidoc/_generate.py -------------------------------------------------------------------------------- /sphinx/ext/apidoc/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/apidoc/_shared.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/__init__.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_directive.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_dynamic/__init__.py: -------------------------------------------------------------------------------- 1 | """The dynamic (import-based) backend for autodoc.""" 2 | -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_dynamic/_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_dynamic/_mock.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_generate.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_legacy_class_based/__init__.py: -------------------------------------------------------------------------------- 1 | """The legacy (class-based) implementation of autodoc.""" 2 | -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_names.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_property_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_property_types.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_renderer.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_sentinels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_sentinels.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/_shared.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/directive.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/importer.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/mock.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/type_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/type_comment.py -------------------------------------------------------------------------------- /sphinx/ext/autodoc/typehints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autodoc/typehints.py -------------------------------------------------------------------------------- /sphinx/ext/autosectionlabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autosectionlabel.py -------------------------------------------------------------------------------- /sphinx/ext/autosummary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autosummary/__init__.py -------------------------------------------------------------------------------- /sphinx/ext/autosummary/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/autosummary/generate.py -------------------------------------------------------------------------------- /sphinx/ext/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/coverage.py -------------------------------------------------------------------------------- /sphinx/ext/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/doctest.py -------------------------------------------------------------------------------- /sphinx/ext/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/duration.py -------------------------------------------------------------------------------- /sphinx/ext/extlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/extlinks.py -------------------------------------------------------------------------------- /sphinx/ext/githubpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/githubpages.py -------------------------------------------------------------------------------- /sphinx/ext/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/graphviz.py -------------------------------------------------------------------------------- /sphinx/ext/ifconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/ifconfig.py -------------------------------------------------------------------------------- /sphinx/ext/imgconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/imgconverter.py -------------------------------------------------------------------------------- /sphinx/ext/imgmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/imgmath.py -------------------------------------------------------------------------------- /sphinx/ext/inheritance_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/inheritance_diagram.py -------------------------------------------------------------------------------- /sphinx/ext/intersphinx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/intersphinx/__init__.py -------------------------------------------------------------------------------- /sphinx/ext/intersphinx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/intersphinx/__main__.py -------------------------------------------------------------------------------- /sphinx/ext/intersphinx/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/intersphinx/_cli.py -------------------------------------------------------------------------------- /sphinx/ext/intersphinx/_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/intersphinx/_load.py -------------------------------------------------------------------------------- /sphinx/ext/intersphinx/_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/intersphinx/_resolve.py -------------------------------------------------------------------------------- /sphinx/ext/intersphinx/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/intersphinx/_shared.py -------------------------------------------------------------------------------- /sphinx/ext/linkcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/linkcode.py -------------------------------------------------------------------------------- /sphinx/ext/mathjax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/mathjax.py -------------------------------------------------------------------------------- /sphinx/ext/napoleon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/napoleon/__init__.py -------------------------------------------------------------------------------- /sphinx/ext/napoleon/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/napoleon/docstring.py -------------------------------------------------------------------------------- /sphinx/ext/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/todo.py -------------------------------------------------------------------------------- /sphinx/ext/viewcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/ext/viewcode.py -------------------------------------------------------------------------------- /sphinx/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/extension.py -------------------------------------------------------------------------------- /sphinx/highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/highlighting.py -------------------------------------------------------------------------------- /sphinx/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/io.py -------------------------------------------------------------------------------- /sphinx/jinja2glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/jinja2glue.py -------------------------------------------------------------------------------- /sphinx/locale/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/locale/.tx/config -------------------------------------------------------------------------------- /sphinx/locale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/locale/__init__.py -------------------------------------------------------------------------------- /sphinx/locale/sphinx.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/locale/sphinx.pot -------------------------------------------------------------------------------- /sphinx/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/parsers.py -------------------------------------------------------------------------------- /sphinx/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/project.py -------------------------------------------------------------------------------- /sphinx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinx/pycode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/pycode/__init__.py -------------------------------------------------------------------------------- /sphinx/pycode/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/pycode/ast.py -------------------------------------------------------------------------------- /sphinx/pycode/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/pycode/parser.py -------------------------------------------------------------------------------- /sphinx/pygments_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/pygments_styles.py -------------------------------------------------------------------------------- /sphinx/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/registry.py -------------------------------------------------------------------------------- /sphinx/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/roles.py -------------------------------------------------------------------------------- /sphinx/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/__init__.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinx/search/_stopwords/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/da.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/da.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/de.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/de.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/en.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/en.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/es.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/es.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/fi.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/fi.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/fr.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/fr.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/hu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/hu.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/hu.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/it.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/it.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/nl.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/nl.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/no.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/no.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/pt.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/pt.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/ru.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/ru.txt -------------------------------------------------------------------------------- /sphinx/search/_stopwords/sv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/sv.py -------------------------------------------------------------------------------- /sphinx/search/_stopwords/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/_stopwords/sv.txt -------------------------------------------------------------------------------- /sphinx/search/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/da.py -------------------------------------------------------------------------------- /sphinx/search/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/de.py -------------------------------------------------------------------------------- /sphinx/search/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/en.py -------------------------------------------------------------------------------- /sphinx/search/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/es.py -------------------------------------------------------------------------------- /sphinx/search/fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/fi.py -------------------------------------------------------------------------------- /sphinx/search/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/fr.py -------------------------------------------------------------------------------- /sphinx/search/hu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/hu.py -------------------------------------------------------------------------------- /sphinx/search/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/it.py -------------------------------------------------------------------------------- /sphinx/search/ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/ja.py -------------------------------------------------------------------------------- /sphinx/search/minified-js/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/minified-js/README.rst -------------------------------------------------------------------------------- /sphinx/search/nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/nl.py -------------------------------------------------------------------------------- /sphinx/search/no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/no.py -------------------------------------------------------------------------------- /sphinx/search/pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/pt.py -------------------------------------------------------------------------------- /sphinx/search/ro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/ro.py -------------------------------------------------------------------------------- /sphinx/search/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/ru.py -------------------------------------------------------------------------------- /sphinx/search/sv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/sv.py -------------------------------------------------------------------------------- /sphinx/search/tr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/tr.py -------------------------------------------------------------------------------- /sphinx/search/zh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/search/zh.py -------------------------------------------------------------------------------- /sphinx/templates/apidoc/toc.rst.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/templates/apidoc/toc.rst.jinja -------------------------------------------------------------------------------- /sphinx/templates/epub3/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/templates/epub3/container.xml -------------------------------------------------------------------------------- /sphinx/templates/epub3/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /sphinx/templates/epub3/toc.ncx.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/templates/epub3/toc.ncx.jinja -------------------------------------------------------------------------------- /sphinx/templates/htmlhelp/project.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/templates/htmlhelp/project.hhc -------------------------------------------------------------------------------- /sphinx/templates/htmlhelp/project.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/templates/htmlhelp/project.hhp -------------------------------------------------------------------------------- /sphinx/templates/htmlhelp/project.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/templates/htmlhelp/project.stp -------------------------------------------------------------------------------- /sphinx/templates/texinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/templates/texinfo/Makefile -------------------------------------------------------------------------------- /sphinx/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/testing/__init__.py -------------------------------------------------------------------------------- /sphinx/testing/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/testing/fixtures.py -------------------------------------------------------------------------------- /sphinx/testing/restructuredtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/testing/restructuredtext.py -------------------------------------------------------------------------------- /sphinx/testing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/testing/util.py -------------------------------------------------------------------------------- /sphinx/texinputs/LICRcyr2utf8.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/LICRcyr2utf8.xdy -------------------------------------------------------------------------------- /sphinx/texinputs/LICRlatin2utf8.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/LICRlatin2utf8.xdy -------------------------------------------------------------------------------- /sphinx/texinputs/LatinRules.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/LatinRules.xdy -------------------------------------------------------------------------------- /sphinx/texinputs/Makefile.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/Makefile.jinja -------------------------------------------------------------------------------- /sphinx/texinputs/latexmkjarc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/latexmkjarc.jinja -------------------------------------------------------------------------------- /sphinx/texinputs/latexmkrc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/latexmkrc.jinja -------------------------------------------------------------------------------- /sphinx/texinputs/make.bat.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/make.bat.jinja -------------------------------------------------------------------------------- /sphinx/texinputs/python.ist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/python.ist -------------------------------------------------------------------------------- /sphinx/texinputs/sphinx.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/sphinx.sty -------------------------------------------------------------------------------- /sphinx/texinputs/sphinx.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/sphinx.xdy -------------------------------------------------------------------------------- /sphinx/texinputs/sphinxhowto.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/sphinxhowto.cls -------------------------------------------------------------------------------- /sphinx/texinputs/sphinxlatexlists.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/sphinxlatexlists.sty -------------------------------------------------------------------------------- /sphinx/texinputs/sphinxmanual.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs/sphinxmanual.cls -------------------------------------------------------------------------------- /sphinx/texinputs_win/Makefile.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/texinputs_win/Makefile.jinja -------------------------------------------------------------------------------- /sphinx/themes/agogo/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/agogo/layout.html -------------------------------------------------------------------------------- /sphinx/themes/agogo/static/bgtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/agogo/static/bgtop.png -------------------------------------------------------------------------------- /sphinx/themes/agogo/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/agogo/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/basic/defindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/defindex.html -------------------------------------------------------------------------------- /sphinx/themes/basic/domainindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/domainindex.html -------------------------------------------------------------------------------- /sphinx/themes/basic/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/genindex.html -------------------------------------------------------------------------------- /sphinx/themes/basic/globaltoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/globaltoc.html -------------------------------------------------------------------------------- /sphinx/themes/basic/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/layout.html -------------------------------------------------------------------------------- /sphinx/themes/basic/localtoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/localtoc.html -------------------------------------------------------------------------------- /sphinx/themes/basic/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/opensearch.xml -------------------------------------------------------------------------------- /sphinx/themes/basic/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/page.html -------------------------------------------------------------------------------- /sphinx/themes/basic/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/relations.html -------------------------------------------------------------------------------- /sphinx/themes/basic/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/search.html -------------------------------------------------------------------------------- /sphinx/themes/basic/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/searchbox.html -------------------------------------------------------------------------------- /sphinx/themes/basic/searchfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/searchfield.html -------------------------------------------------------------------------------- /sphinx/themes/basic/sourcelink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/sourcelink.html -------------------------------------------------------------------------------- /sphinx/themes/basic/static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/static/file.png -------------------------------------------------------------------------------- /sphinx/themes/basic/static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/static/minus.png -------------------------------------------------------------------------------- /sphinx/themes/basic/static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/static/plus.png -------------------------------------------------------------------------------- /sphinx/themes/basic/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/basic/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/bizstyle/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/bizstyle/layout.html -------------------------------------------------------------------------------- /sphinx/themes/bizstyle/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/bizstyle/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/classic/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/classic/layout.html -------------------------------------------------------------------------------- /sphinx/themes/classic/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/classic/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/default/static/default.css: -------------------------------------------------------------------------------- 1 | @import url("classic.css"); 2 | -------------------------------------------------------------------------------- /sphinx/themes/default/theme.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = "classic" 3 | -------------------------------------------------------------------------------- /sphinx/themes/epub/epub-cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/epub/epub-cover.html -------------------------------------------------------------------------------- /sphinx/themes/epub/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/epub/layout.html -------------------------------------------------------------------------------- /sphinx/themes/epub/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/epub/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/haiku/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/haiku/layout.html -------------------------------------------------------------------------------- /sphinx/themes/haiku/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/haiku/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/nature/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/nature/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/nonav/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/nonav/layout.html -------------------------------------------------------------------------------- /sphinx/themes/nonav/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/nonav/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/pyramid/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/pyramid/layout.html -------------------------------------------------------------------------------- /sphinx/themes/pyramid/static/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/pyramid/static/ie6.css -------------------------------------------------------------------------------- /sphinx/themes/pyramid/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/pyramid/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/scrolls/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/scrolls/layout.html -------------------------------------------------------------------------------- /sphinx/themes/scrolls/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/scrolls/static/logo.png -------------------------------------------------------------------------------- /sphinx/themes/scrolls/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/scrolls/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/sphinxdoc/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/sphinxdoc/theme.toml -------------------------------------------------------------------------------- /sphinx/themes/traditional/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/themes/traditional/theme.toml -------------------------------------------------------------------------------- /sphinx/theming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/theming.py -------------------------------------------------------------------------------- /sphinx/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/transforms/__init__.py -------------------------------------------------------------------------------- /sphinx/transforms/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/transforms/i18n.py -------------------------------------------------------------------------------- /sphinx/transforms/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/transforms/references.py -------------------------------------------------------------------------------- /sphinx/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/__init__.py -------------------------------------------------------------------------------- /sphinx/util/_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_files.py -------------------------------------------------------------------------------- /sphinx/util/_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_importer.py -------------------------------------------------------------------------------- /sphinx/util/_inventory_file_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_inventory_file_reader.py -------------------------------------------------------------------------------- /sphinx/util/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_io.py -------------------------------------------------------------------------------- /sphinx/util/_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_lines.py -------------------------------------------------------------------------------- /sphinx/util/_pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_pathlib.py -------------------------------------------------------------------------------- /sphinx/util/_serialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_serialise.py -------------------------------------------------------------------------------- /sphinx/util/_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_timestamps.py -------------------------------------------------------------------------------- /sphinx/util/_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/_uri.py -------------------------------------------------------------------------------- /sphinx/util/build_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/build_phase.py -------------------------------------------------------------------------------- /sphinx/util/cfamily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/cfamily.py -------------------------------------------------------------------------------- /sphinx/util/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/console.py -------------------------------------------------------------------------------- /sphinx/util/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/display.py -------------------------------------------------------------------------------- /sphinx/util/docfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/docfields.py -------------------------------------------------------------------------------- /sphinx/util/docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/docstrings.py -------------------------------------------------------------------------------- /sphinx/util/docutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/docutils.py -------------------------------------------------------------------------------- /sphinx/util/fileutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/fileutil.py -------------------------------------------------------------------------------- /sphinx/util/http_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/http_date.py -------------------------------------------------------------------------------- /sphinx/util/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/i18n.py -------------------------------------------------------------------------------- /sphinx/util/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/images.py -------------------------------------------------------------------------------- /sphinx/util/index_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/index_entries.py -------------------------------------------------------------------------------- /sphinx/util/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/inspect.py -------------------------------------------------------------------------------- /sphinx/util/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/inventory.py -------------------------------------------------------------------------------- /sphinx/util/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/logging.py -------------------------------------------------------------------------------- /sphinx/util/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/matching.py -------------------------------------------------------------------------------- /sphinx/util/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/math.py -------------------------------------------------------------------------------- /sphinx/util/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/nodes.py -------------------------------------------------------------------------------- /sphinx/util/osutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/osutil.py -------------------------------------------------------------------------------- /sphinx/util/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/parallel.py -------------------------------------------------------------------------------- /sphinx/util/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/parsing.py -------------------------------------------------------------------------------- /sphinx/util/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/png.py -------------------------------------------------------------------------------- /sphinx/util/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/requests.py -------------------------------------------------------------------------------- /sphinx/util/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/rst.py -------------------------------------------------------------------------------- /sphinx/util/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/tags.py -------------------------------------------------------------------------------- /sphinx/util/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/template.py -------------------------------------------------------------------------------- /sphinx/util/texescape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/texescape.py -------------------------------------------------------------------------------- /sphinx/util/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/util/typing.py -------------------------------------------------------------------------------- /sphinx/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/versioning.py -------------------------------------------------------------------------------- /sphinx/writers/__init__.py: -------------------------------------------------------------------------------- 1 | """Custom docutils writers.""" 2 | -------------------------------------------------------------------------------- /sphinx/writers/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/writers/html.py -------------------------------------------------------------------------------- /sphinx/writers/html5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/writers/html5.py -------------------------------------------------------------------------------- /sphinx/writers/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/writers/latex.py -------------------------------------------------------------------------------- /sphinx/writers/manpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/writers/manpage.py -------------------------------------------------------------------------------- /sphinx/writers/texinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/writers/texinfo.py -------------------------------------------------------------------------------- /sphinx/writers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/writers/text.py -------------------------------------------------------------------------------- /sphinx/writers/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/sphinx/writers/xml.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/certs/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/certs/cert.pem -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/js/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/documentation_options.js -------------------------------------------------------------------------------- /tests/js/fixtures/cpp/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/fixtures/cpp/searchindex.js -------------------------------------------------------------------------------- /tests/js/jasmine-browser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/jasmine-browser.mjs -------------------------------------------------------------------------------- /tests/js/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/language_data.js -------------------------------------------------------------------------------- /tests/js/roots/cpp/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/roots/cpp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/roots/cpp/index.rst -------------------------------------------------------------------------------- /tests/js/roots/multiterm/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/roots/multiterm/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/roots/multiterm/index.rst -------------------------------------------------------------------------------- /tests/js/roots/partial/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/roots/partial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/roots/partial/index.rst -------------------------------------------------------------------------------- /tests/js/roots/titles/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/roots/titles/conf.py -------------------------------------------------------------------------------- /tests/js/roots/titles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/roots/titles/index.rst -------------------------------------------------------------------------------- /tests/js/roots/titles/relevance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/roots/titles/relevance.py -------------------------------------------------------------------------------- /tests/js/roots/titles/relevance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/roots/titles/relevance.rst -------------------------------------------------------------------------------- /tests/js/searchtools.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/searchtools.spec.js -------------------------------------------------------------------------------- /tests/js/sphinx_highlight.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/js/sphinx_highlight.spec.js -------------------------------------------------------------------------------- /tests/roots/test-_blank/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-_blank/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-basic/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-basic/conf.py -------------------------------------------------------------------------------- /tests/roots/test-basic/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-basic/index.rst -------------------------------------------------------------------------------- /tests/roots/test-build-html-theme-having-multiple-stylesheets/_themes/mytheme/_static/extra.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-build-html-theme-having-multiple-stylesheets/_themes/mytheme/_static/mytheme.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-build-text/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-build-text/conf.py -------------------------------------------------------------------------------- /tests/roots/test-build-text/doc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-build-text/doc1.txt -------------------------------------------------------------------------------- /tests/roots/test-build-text/doc2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-build-text/doc2.txt -------------------------------------------------------------------------------- /tests/roots/test-build-text/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-build-text/index.txt -------------------------------------------------------------------------------- /tests/roots/test-build-text/table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-build-text/table.txt -------------------------------------------------------------------------------- /tests/roots/test-builder-dirhtml/bar.rst: -------------------------------------------------------------------------------- 1 | .. _bar: 2 | 3 | bar 4 | === 5 | -------------------------------------------------------------------------------- /tests/roots/test-builder-dirhtml/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-builder-gettext-dont-rebuild-mo/conf.py: -------------------------------------------------------------------------------- 1 | language = 'xx' 2 | -------------------------------------------------------------------------------- /tests/roots/test-changes/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-changes/base.rst -------------------------------------------------------------------------------- /tests/roots/test-changes/c-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-changes/c-api.rst -------------------------------------------------------------------------------- /tests/roots/test-changes/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-changes/conf.py -------------------------------------------------------------------------------- /tests/roots/test-changes/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-changes/contents.rst -------------------------------------------------------------------------------- /tests/roots/test-circular/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-circular/index.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | 3 | sub 4 | 5 | -------------------------------------------------------------------------------- /tests/roots/test-circular/sub.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | 3 | index 4 | -------------------------------------------------------------------------------- /tests/roots/test-config/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-config/conf.py -------------------------------------------------------------------------------- /tests/roots/test-copyright-multiline/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-default_role/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-default_role/foo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-default_role/foo.rst -------------------------------------------------------------------------------- /tests/roots/test-directive-code/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | numfig = True 3 | -------------------------------------------------------------------------------- /tests/roots/test-directive-code/empty.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/roots/test-directive-code/error.inc: -------------------------------------------------------------------------------- 1 | not a python script! 2 | -------------------------------------------------------------------------------- /tests/roots/test-directive-csv-table/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-directive-csv-table/example.csv: -------------------------------------------------------------------------------- 1 | foo,bar,baz 2 | -------------------------------------------------------------------------------- /tests/roots/test-directive-csv-table/subdir/example.csv: -------------------------------------------------------------------------------- 1 | FOO,BAR,BAZ 2 | -------------------------------------------------------------------------------- /tests/roots/test-directive-include/bar.txt: -------------------------------------------------------------------------------- 1 | Text from :file:`bar.txt`. 2 | -------------------------------------------------------------------------------- /tests/roots/test-directive-include/baz/baz.rst: -------------------------------------------------------------------------------- 1 | Baz 2 | === 3 | 4 | .. include:: foo.rst 5 | 6 | Baz was here. 7 | -------------------------------------------------------------------------------- /tests/roots/test-directive-include/foo.rst: -------------------------------------------------------------------------------- 1 | The #magical foo. 2 | -------------------------------------------------------------------------------- /tests/roots/test-directive-include/text.txt: -------------------------------------------------------------------------------- 1 | This is plain text. 2 | -------------------------------------------------------------------------------- /tests/roots/test-directives-admonition-collapse/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-directives-raw/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-docutilsconf/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-docutilsconf/docutils.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-domain-c/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-c/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-c/index.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-cpp/backslash.rst: -------------------------------------------------------------------------------- 1 | .. cpp:var:: char c = '\\' 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-cpp/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-cpp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-cpp/index.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-cpp/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-cpp/roles.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-js-javascript_maximum_signature_line_length/conf.py: -------------------------------------------------------------------------------- 1 | javascript_maximum_signature_line_length = 1 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-js/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-js/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-js/index.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-js/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-js/module.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-js/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-js/roles.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-py-python_maximum_signature_line_length/conf.py: -------------------------------------------------------------------------------- 1 | python_maximum_signature_line_length = 1 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-py-python_use_unqualified_type_names/conf.py: -------------------------------------------------------------------------------- 1 | python_use_unqualified_type_names = True 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-py-xref-type-alias/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-domain-py-xref-warning/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-domain-py/abbr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-py/abbr.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-py/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-domain-py/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-py/index.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-py/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-py/module.rst -------------------------------------------------------------------------------- /tests/roots/test-domain-py/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-domain-py/roles.rst -------------------------------------------------------------------------------- /tests/roots/test-double-inheriting-theme/base_themes_dir/base_theme1/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /tests/roots/test-environment-record-dependencies/example_module.py: -------------------------------------------------------------------------------- 1 | def example_function(): 2 | return 42 3 | -------------------------------------------------------------------------------- /tests/roots/test-environment-record-dependencies/index.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | 3 | api 4 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-custom-templates/mypackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-custom-templates/mypackage/mymodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-duplicates/fish_licence/halibut.cpython-38-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-duplicates/fish_licence/halibut.pyd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-duplicates/fish_licence/halibut.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-duplicates/fish_licence/halibut.pyx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-pep420/a/b/c/__init__.py: -------------------------------------------------------------------------------- 1 | """Package C""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-pep420/a/b/c/d.py: -------------------------------------------------------------------------------- 1 | """Module d""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-pep420/a/b/e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-pep420/a/b/e/f.py: -------------------------------------------------------------------------------- 1 | """Module f""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-pep420/a/b/x/y.py: -------------------------------------------------------------------------------- 1 | """Module y""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-subpackage-in-toc/parent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-subpackage-in-toc/parent/child/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-subpackage-in-toc/parent/child/foo.py: -------------------------------------------------------------------------------- 1 | """foo""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-toc/mypackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-toc/mypackage/resource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-toc/mypackage/something/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage Something""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc-trailing-underscore/package_/__init__.py: -------------------------------------------------------------------------------- 1 | """A package with trailing underscores""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-apidoc/conf.py -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-apidoc/index.rst -------------------------------------------------------------------------------- /tests/roots/test-ext-apidoc/src/exclude_package.py: -------------------------------------------------------------------------------- 1 | """A module that should be excluded.""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autodoc/bug2437/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autodoc/circular_import/a.py: -------------------------------------------------------------------------------- 1 | X = 42 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autodoc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-autodoc/conf.py -------------------------------------------------------------------------------- /tests/roots/test-ext-autodoc/target/canonical/__init__.py: -------------------------------------------------------------------------------- 1 | from target.canonical.original import Bar, Foo 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autodoc/target/pep570.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosectionlabel/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinx.ext.autosectionlabel'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-import_cycle/spam/__init__.py: -------------------------------------------------------------------------------- 1 | """``spam`` module docstring.""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-module_empty_all/autosummary_dummy_package_empty_all/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = () 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-module_prefix/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-module_prefix/pkg/mod0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-module_prefix/pkg/mod1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-recursive/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-recursive/package/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-recursive/package2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-skip-member/index.rst: -------------------------------------------------------------------------------- 1 | .. autosummary:: 2 | :toctree: generate 3 | 4 | target.Foo 5 | -------------------------------------------------------------------------------- /tests/roots/test-ext-autosummary-template/_templates/empty.rst: -------------------------------------------------------------------------------- 1 | EMPTY 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-coverage/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-coverage/conf.py -------------------------------------------------------------------------------- /tests/roots/test-ext-coverage/grog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-doctest-with-autodoc/dir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-doctest-with-autodoc/dir/bar.py: -------------------------------------------------------------------------------- 1 | """>>> 'dir/bar.py:2'""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-doctest-with-autodoc/foo.py: -------------------------------------------------------------------------------- 1 | """>>> 'foo.py:3'""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-doctest-with-autodoc/index.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: foo 2 | :members: 3 | 4 | >>> 'index.rst:4' 5 | -------------------------------------------------------------------------------- /tests/roots/test-ext-doctest/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-doctest/conf.py -------------------------------------------------------------------------------- /tests/roots/test-ext-githubpages/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinx.ext.githubpages'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-graphviz/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-graphviz/conf.py -------------------------------------------------------------------------------- /tests/roots/test-ext-graphviz/graph.dot: -------------------------------------------------------------------------------- 1 | digraph { 2 | bar -> baz 3 | } 4 | -------------------------------------------------------------------------------- /tests/roots/test-ext-graphviz/graph.xx.dot: -------------------------------------------------------------------------------- 1 | digraph { 2 | BAR -> BAZ 3 | } 4 | -------------------------------------------------------------------------------- /tests/roots/test-ext-ifconfig/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-ifconfig/conf.py -------------------------------------------------------------------------------- /tests/roots/test-ext-imgconverter/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinx.ext.imgconverter'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-inheritance_diagram/example/__init__.py: -------------------------------------------------------------------------------- 1 | # example.py 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-math-duplicate-label/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinx.ext.mathjax'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-math-include/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-math-simple/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-math/_static/custom_mathjax_config.js: -------------------------------------------------------------------------------- 1 | window.MathJax = {"extensions": ["tex2jax.js"]} 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-math/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-math/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-math/index.rst -------------------------------------------------------------------------------- /tests/roots/test-ext-math/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-math/math.rst -------------------------------------------------------------------------------- /tests/roots/test-ext-math/nomath.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-math/page.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-math/page.rst -------------------------------------------------------------------------------- /tests/roots/test-ext-napoleon-paramtype/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-napoleon/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-napoleon/conf.py -------------------------------------------------------------------------------- /tests/roots/test-ext-napoleon/mypackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-ext-todo/bar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-todo/bar.rst -------------------------------------------------------------------------------- /tests/roots/test-ext-todo/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinx.ext.todo'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-todo/foo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-todo/foo.rst -------------------------------------------------------------------------------- /tests/roots/test-ext-todo/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-todo/index.rst -------------------------------------------------------------------------------- /tests/roots/test-ext-viewcode-find-package/main_package/subpackage/_subpackage2/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-viewcode-find/not_a_package/__init__.py: -------------------------------------------------------------------------------- 1 | from .submodule import Class1, func1 2 | -------------------------------------------------------------------------------- /tests/roots/test-ext-viewcode/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-ext-viewcode/conf.py -------------------------------------------------------------------------------- /tests/roots/test-extensions/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-extensions/conf.py -------------------------------------------------------------------------------- /tests/roots/test-footnotes/bar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-footnotes/bar.rst -------------------------------------------------------------------------------- /tests/roots/test-footnotes/baz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-footnotes/baz.rst -------------------------------------------------------------------------------- /tests/roots/test-footnotes/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-footnotes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-footnotes/index.rst -------------------------------------------------------------------------------- /tests/roots/test-footnotes/rimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-footnotes/rimg.png -------------------------------------------------------------------------------- /tests/roots/test-gettext-template/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-glossary/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-glossary/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-glossary/index.rst -------------------------------------------------------------------------------- /tests/roots/test-html_assets/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-html_assets/conf.py -------------------------------------------------------------------------------- /tests/roots/test-html_assets/extra/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/extra/.htpasswd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/extra/API.html.jinja: -------------------------------------------------------------------------------- 1 | {{ project }}-{{ version }} 2 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/extra/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/extra/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/extra/subdir/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/extra/subdir/.htpasswd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/.htpasswd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/API.html.jinja: -------------------------------------------------------------------------------- 1 | {{ project }}-{{ version }} 2 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/subdir/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/static/subdir/.htpasswd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_assets/subdir/_build/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_entity/conf.py: -------------------------------------------------------------------------------- 1 | html_theme = 'classic' 2 | exclude_patterns = ['_build'] 3 | -------------------------------------------------------------------------------- /tests/roots/test-html_file_checksum/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_file_checksum/static/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_file_checksum/static/script.js: -------------------------------------------------------------------------------- 1 | /* Script */ 2 | -------------------------------------------------------------------------------- /tests/roots/test-html_file_checksum/static/stylesheet-a.css: -------------------------------------------------------------------------------- 1 | /* Stylesheet A */ 2 | -------------------------------------------------------------------------------- /tests/roots/test-html_file_checksum/static/stylesheet-b.css: -------------------------------------------------------------------------------- 1 | /* Stylesheet B */ 2 | -------------------------------------------------------------------------------- /tests/roots/test-html_scaled_image_link/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_signaturereturn_icon/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinx.ext.autodoc'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-html_style/_static/default.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-html_style/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-html_style/conf.py -------------------------------------------------------------------------------- /tests/roots/test-html_style/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-html_style/index.rst -------------------------------------------------------------------------------- /tests/roots/test-image-escape/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-images/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-images/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/img.gif -------------------------------------------------------------------------------- /tests/roots/test-images/img.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/img.ja.png -------------------------------------------------------------------------------- /tests/roots/test-images/img.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/img.pdf -------------------------------------------------------------------------------- /tests/roots/test-images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/img.png -------------------------------------------------------------------------------- /tests/roots/test-images/img.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/img.zh.png -------------------------------------------------------------------------------- /tests/roots/test-images/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/index.rst -------------------------------------------------------------------------------- /tests/roots/test-images/rimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/rimg.png -------------------------------------------------------------------------------- /tests/roots/test-images/rimg.png.xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/rimg.png.xx -------------------------------------------------------------------------------- /tests/roots/test-images/rimg.xx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/rimg.xx.png -------------------------------------------------------------------------------- /tests/roots/test-images/testimäge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-images/testimäge.png -------------------------------------------------------------------------------- /tests/roots/test-index_on_title/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-inheritance/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-inheritance/conf.py -------------------------------------------------------------------------------- /tests/roots/test-inheritance/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-intl/admonitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/admonitions.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/backslashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/backslashes.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/bom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/bom.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/conf.py -------------------------------------------------------------------------------- /tests/roots/test-intl/docfields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/docfields.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/figure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/figure.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/footnote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/footnote.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/i18n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/i18n.png -------------------------------------------------------------------------------- /tests/roots/test-intl/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/img.png -------------------------------------------------------------------------------- /tests/roots/test-intl/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/index.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/markup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/markup.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/noqa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/noqa.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/only.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/raw.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/refs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/refs.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/role_xref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/role_xref.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/rubric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/rubric.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/section.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/section.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/seealso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/seealso.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/table.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/toctree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/toctree.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/topic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/topic.txt -------------------------------------------------------------------------------- /tests/roots/test-intl/warnings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-intl/warnings.txt -------------------------------------------------------------------------------- /tests/roots/test-keep_warnings/conf.py: -------------------------------------------------------------------------------- 1 | keep_warnings = True 2 | -------------------------------------------------------------------------------- /tests/roots/test-latex-babel/bar.rst: -------------------------------------------------------------------------------- 1 | === 2 | Bar 3 | === 4 | 5 | -------------------------------------------------------------------------------- /tests/roots/test-latex-babel/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-latex-babel/conf.py -------------------------------------------------------------------------------- /tests/roots/test-latex-babel/foo.rst: -------------------------------------------------------------------------------- 1 | === 2 | Foo 3 | === 4 | 5 | -------------------------------------------------------------------------------- /tests/roots/test-latex-container/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-latex-container/index.rst: -------------------------------------------------------------------------------- 1 | .. container:: classname 2 | 3 | text 4 | -------------------------------------------------------------------------------- /tests/roots/test-latex-contents-topic-sidebar/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-latex-images-css3-lengths/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-latex-index/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-latex-labels-before-module/automodule1.py: -------------------------------------------------------------------------------- 1 | """docstring""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-latex-labels-before-module/automodule2a.py: -------------------------------------------------------------------------------- 1 | """docstring""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-latex-labels-before-module/automodule2b.py: -------------------------------------------------------------------------------- 1 | """docstring""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-latex-labels-before-module/automodule3.py: -------------------------------------------------------------------------------- 1 | """docstring""" 2 | -------------------------------------------------------------------------------- /tests/roots/test-latex-labels/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-latex-numfig/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-latex-numfig/conf.py -------------------------------------------------------------------------------- /tests/roots/test-latex-table/_mytemplates/latex/longtable.tex.jinja: -------------------------------------------------------------------------------- 1 | SALUT LES COPAINS 2 | -------------------------------------------------------------------------------- /tests/roots/test-latex-table/_mytemplates/latex/tabulary.tex_t: -------------------------------------------------------------------------------- 1 | AU REVOIR, KANIGGETS 2 | -------------------------------------------------------------------------------- /tests/roots/test-latex-table/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-latex-theme/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-latex-theme/conf.py -------------------------------------------------------------------------------- /tests/roots/test-latex-title/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-latex-title/conf.py -------------------------------------------------------------------------------- /tests/roots/test-latex-unicode/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-linkcheck-case-check/conf.py: -------------------------------------------------------------------------------- 1 | linkcheck_timeout = 0.25 2 | -------------------------------------------------------------------------------- /tests/roots/test-linkcheck-localserver-https/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | linkcheck_timeout = 0.25 3 | -------------------------------------------------------------------------------- /tests/roots/test-linkcheck-localserver-https/index.rst: -------------------------------------------------------------------------------- 1 | `HTTPS server `_ 2 | -------------------------------------------------------------------------------- /tests/roots/test-linkcheck-localserver-warn-redirects/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | linkcheck_timeout = 0.25 3 | -------------------------------------------------------------------------------- /tests/roots/test-linkcheck-localserver/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | linkcheck_timeout = 0.25 3 | -------------------------------------------------------------------------------- /tests/roots/test-linkcheck-raw-node/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | linkcheck_timeout = 0.25 3 | -------------------------------------------------------------------------------- /tests/roots/test-linkcheck/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-linkcheck/conf.py -------------------------------------------------------------------------------- /tests/roots/test-linkcheck/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-linkcheck/links.rst -------------------------------------------------------------------------------- /tests/roots/test-local-logo/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-local-logo/conf.py -------------------------------------------------------------------------------- /tests/roots/test-local-logo/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-local-logo/index.rst -------------------------------------------------------------------------------- /tests/roots/test-locale/locale1/en/LC_MESSAGES/myext.po: -------------------------------------------------------------------------------- 1 | msgid "Hello world" 2 | msgstr "HELLO WORLD" 3 | -------------------------------------------------------------------------------- /tests/roots/test-locale/locale1/et/LC_MESSAGES/myext.po: -------------------------------------------------------------------------------- 1 | msgid "Hello world" 2 | msgstr "Tere maailm" 3 | -------------------------------------------------------------------------------- /tests/roots/test-locale/locale2/en/LC_MESSAGES/myext.po: -------------------------------------------------------------------------------- 1 | msgid "Hello sphinx" 2 | msgstr "HELLO SPHINX" 3 | -------------------------------------------------------------------------------- /tests/roots/test-manpage_url/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-maxlistdepth/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-maxlistdepth/conf.py -------------------------------------------------------------------------------- /tests/roots/test-metadata/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-metadata/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-metadata/index.rst -------------------------------------------------------------------------------- /tests/roots/test-need-escaped/bar.rst: -------------------------------------------------------------------------------- 1 | bar 2 | === 3 | -------------------------------------------------------------------------------- /tests/roots/test-need-escaped/baz.rst: -------------------------------------------------------------------------------- 1 | baz 2 | === 3 | -------------------------------------------------------------------------------- /tests/roots/test-need-escaped/quux.rst: -------------------------------------------------------------------------------- 1 | quux 2 | ==== 3 | -------------------------------------------------------------------------------- /tests/roots/test-need-escaped/qux.rst: -------------------------------------------------------------------------------- 1 | qux.rst has no section title 2 | -------------------------------------------------------------------------------- /tests/roots/test-nested-enumerated-list/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-nested-tables/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-nitpicky-warnings/conf.py: -------------------------------------------------------------------------------- 1 | nitpicky = True 2 | -------------------------------------------------------------------------------- /tests/roots/test-numbered-circular/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-numbered-circular/sub.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | 3 | index 4 | -------------------------------------------------------------------------------- /tests/roots/test-numfig/bar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-numfig/bar.rst -------------------------------------------------------------------------------- /tests/roots/test-numfig/baz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-numfig/baz.rst -------------------------------------------------------------------------------- /tests/roots/test-numfig/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-numfig/foo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-numfig/foo.rst -------------------------------------------------------------------------------- /tests/roots/test-numfig/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-numfig/index.rst -------------------------------------------------------------------------------- /tests/roots/test-numfig/rimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-numfig/rimg.png -------------------------------------------------------------------------------- /tests/roots/test-object-description-sections/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-productionlist/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-prolog/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-prolog/conf.py -------------------------------------------------------------------------------- /tests/roots/test-prolog/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-prolog/index.rst -------------------------------------------------------------------------------- /tests/roots/test-prolog/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-prolog/markdown.md -------------------------------------------------------------------------------- /tests/roots/test-reST-code-block/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-reST-code-role/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-refonly_bullet_list/conf.py: -------------------------------------------------------------------------------- 1 | html_compact_lists = False 2 | -------------------------------------------------------------------------------- /tests/roots/test-roles-download/another/dummy.dat: -------------------------------------------------------------------------------- 1 | this one will have some content 2 | -------------------------------------------------------------------------------- /tests/roots/test-roles-download/dummy.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-root/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/Makefile -------------------------------------------------------------------------------- /tests/roots/test-root/autodoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/autodoc.txt -------------------------------------------------------------------------------- /tests/roots/test-root/bom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/bom.txt -------------------------------------------------------------------------------- /tests/roots/test-root/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/conf.py -------------------------------------------------------------------------------- /tests/roots/test-root/extapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/extapi.txt -------------------------------------------------------------------------------- /tests/roots/test-root/file_with_special_#_chars.xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-root/footnote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/footnote.txt -------------------------------------------------------------------------------- /tests/roots/test-root/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/images.txt -------------------------------------------------------------------------------- /tests/roots/test-root/img.foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/img.foo.png -------------------------------------------------------------------------------- /tests/roots/test-root/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/img.gif -------------------------------------------------------------------------------- /tests/roots/test-root/img.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/img.pdf -------------------------------------------------------------------------------- /tests/roots/test-root/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/img.png -------------------------------------------------------------------------------- /tests/roots/test-root/includes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/includes.txt -------------------------------------------------------------------------------- /tests/roots/test-root/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/index.txt -------------------------------------------------------------------------------- /tests/roots/test-root/lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/lists.txt -------------------------------------------------------------------------------- /tests/roots/test-root/literal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/literal.inc -------------------------------------------------------------------------------- /tests/roots/test-root/markup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/markup.txt -------------------------------------------------------------------------------- /tests/roots/test-root/math.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/math.txt -------------------------------------------------------------------------------- /tests/roots/test-root/objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/objects.txt -------------------------------------------------------------------------------- /tests/roots/test-root/otherext.foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/otherext.foo -------------------------------------------------------------------------------- /tests/roots/test-root/parsermod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/parsermod.py -------------------------------------------------------------------------------- /tests/roots/test-root/quotes.inc: -------------------------------------------------------------------------------- 1 | Testing "quotes" in literal 'included' text. 2 | -------------------------------------------------------------------------------- /tests/roots/test-root/rimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/rimg.png -------------------------------------------------------------------------------- /tests/roots/test-root/special/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/special/api.h -------------------------------------------------------------------------------- /tests/roots/test-root/svgimg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/svgimg.pdf -------------------------------------------------------------------------------- /tests/roots/test-root/svgimg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/svgimg.svg -------------------------------------------------------------------------------- /tests/roots/test-root/tabs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/tabs.inc -------------------------------------------------------------------------------- /tests/roots/test-root/test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/test.inc -------------------------------------------------------------------------------- /tests/roots/test-root/wrongenc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-root/wrongenc.inc -------------------------------------------------------------------------------- /tests/roots/test-search/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | html_search_language = 'en' 3 | -------------------------------------------------------------------------------- /tests/roots/test-search/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-search/index.rst -------------------------------------------------------------------------------- /tests/roots/test-search/tocitem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-search/tocitem.rst -------------------------------------------------------------------------------- /tests/roots/test-smartquotes/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-templating/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-templating/conf.py -------------------------------------------------------------------------------- /tests/roots/test-theming/child.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-theming/child.zip -------------------------------------------------------------------------------- /tests/roots/test-theming/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-theming/conf.py -------------------------------------------------------------------------------- /tests/roots/test-theming/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-theming/index.rst -------------------------------------------------------------------------------- /tests/roots/test-theming/parent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-theming/parent.zip -------------------------------------------------------------------------------- /tests/roots/test-theming/test_theme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-tocdepth/bar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-tocdepth/bar.rst -------------------------------------------------------------------------------- /tests/roots/test-tocdepth/baz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-tocdepth/baz.rst -------------------------------------------------------------------------------- /tests/roots/test-tocdepth/conf.py: -------------------------------------------------------------------------------- 1 | html_theme = 'classic' 2 | exclude_patterns = ['_build'] 3 | -------------------------------------------------------------------------------- /tests/roots/test-tocdepth/foo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-tocdepth/foo.rst -------------------------------------------------------------------------------- /tests/roots/test-tocdepth/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-tocdepth/index.rst -------------------------------------------------------------------------------- /tests/roots/test-toctree-domain-objects/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-duplicated/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-duplicated/foo.rst: -------------------------------------------------------------------------------- 1 | foo 2 | === 3 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-glob/baz.rst: -------------------------------------------------------------------------------- 1 | Baz 2 | === 3 | 4 | baz 5 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-glob/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-glob/foo.rst: -------------------------------------------------------------------------------- 1 | Foo 2 | === 3 | 4 | foo 5 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-index/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-maxdepth/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ['_build'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-multiple-parents/conf.py: -------------------------------------------------------------------------------- 1 | html_theme = 'basic' 2 | -------------------------------------------------------------------------------- /tests/roots/test-toctree-only/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-toctree/bar.rst: -------------------------------------------------------------------------------- 1 | bar 2 | === 3 | -------------------------------------------------------------------------------- /tests/roots/test-toctree/baz.rst: -------------------------------------------------------------------------------- 1 | baz 2 | === 3 | -------------------------------------------------------------------------------- /tests/roots/test-toctree/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-toctree/foo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-toctree/foo.rst -------------------------------------------------------------------------------- /tests/roots/test-toctree/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-toctree/index.rst -------------------------------------------------------------------------------- /tests/roots/test-toctree/quux.rst: -------------------------------------------------------------------------------- 1 | quux 2 | ==== 3 | -------------------------------------------------------------------------------- /tests/roots/test-toctree/qux.rst: -------------------------------------------------------------------------------- 1 | qux.rst has no section title 2 | -------------------------------------------------------------------------------- /tests/roots/test-transforms-post_transforms-keyboard/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-transforms-post_transforms-missing-reference/conf.py: -------------------------------------------------------------------------------- 1 | nitpicky = True 2 | -------------------------------------------------------------------------------- /tests/roots/test-trim_doctest_flags/conf.py: -------------------------------------------------------------------------------- 1 | extensions = ['sphinx.ext.doctest'] 2 | -------------------------------------------------------------------------------- /tests/roots/test-util-copyasset_overwrite/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test-util-copyasset_overwrite/myext_static/custom-styles.css: -------------------------------------------------------------------------------- 1 | /* extension styles */ 2 | -------------------------------------------------------------------------------- /tests/roots/test-util-copyasset_overwrite/user_static/custom-styles.css: -------------------------------------------------------------------------------- 1 | /* html_static_path */ 2 | -------------------------------------------------------------------------------- /tests/roots/test-versioning/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-versioning/conf.py -------------------------------------------------------------------------------- /tests/roots/test-warnings/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-warnings/conf.py -------------------------------------------------------------------------------- /tests/roots/test-warnings/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/roots/test-warnings/index.rst -------------------------------------------------------------------------------- /tests/test__cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_addnodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_addnodes.py -------------------------------------------------------------------------------- /tests/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_application.py -------------------------------------------------------------------------------- /tests/test_builders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_builders/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_builders/conftest.py -------------------------------------------------------------------------------- /tests/test_builders/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_builders/test_build.py -------------------------------------------------------------------------------- /tests/test_builders/xpath_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_builders/xpath_data.py -------------------------------------------------------------------------------- /tests/test_builders/xpath_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_builders/xpath_util.py -------------------------------------------------------------------------------- /tests/test_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_command_line.py -------------------------------------------------------------------------------- /tests/test_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_config/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_config/test_config.py -------------------------------------------------------------------------------- /tests/test_config/test_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_config/test_copyright.py -------------------------------------------------------------------------------- /tests/test_directives/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_domains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_domains/test_domain_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_domains/test_domain_c.py -------------------------------------------------------------------------------- /tests/test_environment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tests/test_ext_autodoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ext_autodoc/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_ext_autodoc/conftest.py -------------------------------------------------------------------------------- /tests/test_ext_autosummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ext_imgconverter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ext_intersphinx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ext_napoleon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_highlighting.py -------------------------------------------------------------------------------- /tests/test_intl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_intl/test_catalogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_intl/test_catalogs.py -------------------------------------------------------------------------------- /tests/test_intl/test_intl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_intl/test_intl.py -------------------------------------------------------------------------------- /tests/test_intl/test_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_intl/test_locale.py -------------------------------------------------------------------------------- /tests/test_markup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_markup/test_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_markup/test_markup.py -------------------------------------------------------------------------------- /tests/test_markup/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_markup/test_metadata.py -------------------------------------------------------------------------------- /tests/test_markup/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_markup/test_parser.py -------------------------------------------------------------------------------- /tests/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_project.py -------------------------------------------------------------------------------- /tests/test_pycode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pycode/test_pycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_pycode/test_pycode.py -------------------------------------------------------------------------------- /tests/test_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_quickstart.py -------------------------------------------------------------------------------- /tests/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_roles.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_search.py -------------------------------------------------------------------------------- /tests/test_theming/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_theming/test_theming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_theming/test_theming.py -------------------------------------------------------------------------------- /tests/test_theming/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_theming/theme.conf -------------------------------------------------------------------------------- /tests/test_theming/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_theming/theme.toml -------------------------------------------------------------------------------- /tests/test_transforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_util/intersphinx_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/intersphinx_data.py -------------------------------------------------------------------------------- /tests/test_util/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util.py -------------------------------------------------------------------------------- /tests/test_util/test_util_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util_i18n.py -------------------------------------------------------------------------------- /tests/test_util/test_util_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util_images.py -------------------------------------------------------------------------------- /tests/test_util/test_util_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util_lines.py -------------------------------------------------------------------------------- /tests/test_util/test_util_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util_nodes.py -------------------------------------------------------------------------------- /tests/test_util/test_util_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util_rst.py -------------------------------------------------------------------------------- /tests/test_util/test_util_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util_typing.py -------------------------------------------------------------------------------- /tests/test_util/test_util_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/test_util_uri.py -------------------------------------------------------------------------------- /tests/test_util/typing_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_util/typing_test_data.py -------------------------------------------------------------------------------- /tests/test_versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/test_versioning.py -------------------------------------------------------------------------------- /tests/test_writers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/tox.ini -------------------------------------------------------------------------------- /ty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/ty.toml -------------------------------------------------------------------------------- /utils/CHANGES_template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/CHANGES_template.rst -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/babel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/babel_runner.py -------------------------------------------------------------------------------- /utils/bump_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/bump_docker.py -------------------------------------------------------------------------------- /utils/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/bump_version.py -------------------------------------------------------------------------------- /utils/convert_attestations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/convert_attestations.py -------------------------------------------------------------------------------- /utils/generate_js_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/generate_js_fixtures.py -------------------------------------------------------------------------------- /utils/generate_snowball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/generate_snowball.py -------------------------------------------------------------------------------- /utils/release-checklist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/utils/release-checklist.rst -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-doc/sphinx/HEAD/uv.lock --------------------------------------------------------------------------------