Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bobmcwhirter/d94067eac6ceb41ed7900898ee750a60 to your computer and use it in GitHub Desktop.

Select an option

Save bobmcwhirter/d94067eac6ceb41ed7900898ee750a60 to your computer and use it in GitHub Desktop.
xtask/vendor/sphinx
├── babel
│   ├── __init__.py
│   ├── core.py
│   ├── dates.py
│   ├── languages.py
│   ├── lists.py
│   ├── locale-data
│   ├── localedata.py
│   ├── localtime
│   │   ├── __init__.py
│   │   ├── _fallback.py
│   │   ├── _helpers.py
│   │   ├── _unix.py
│   │   └── _win32.py
│   ├── messages
│   │   ├── __init__.py
│   │   ├── catalog.py
│   │   ├── checkers.py
│   │   ├── extract.py
│   │   ├── frontend.py
│   │   ├── jslexer.py
│   │   ├── mofile.py
│   │   ├── plurals.py
│   │   ├── pofile.py
│   │   └── setuptools_frontend.py
│   ├── numbers.py
│   ├── plural.py
│   ├── py.typed
│   ├── support.py
│   ├── units.py
│   └── util.py
├── babel-2.14.0
│   ├── AUTHORS
│   ├── CHANGES.rst
│   ├── cldr
│   ├── conftest.py
│   ├── contrib
│   │   └── babel.js
│   ├── CONTRIBUTING.md
│   ├── docs
│   │   ├── _static
│   │   │   ├── logo_small.png
│   │   │   ├── logo.pdf
│   │   │   └── logo.png
│   │   ├── _templates
│   │   │   ├── sidebar-about.html
│   │   │   ├── sidebar-links.html
│   │   │   └── sidebar-logo.html
│   │   ├── _themes
│   │   │   ├── babel
│   │   │   │   ├── layout.html
│   │   │   │   ├── relations.html
│   │   │   │   ├── static
│   │   │   │   │   ├── babel.css_t
│   │   │   │   │   └── small_babel.css
│   │   │   │   └── theme.conf
│   │   │   ├── LICENSE
│   │   │   └── README
│   │   ├── api
│   │   │   ├── core.rst
│   │   │   ├── dates.rst
│   │   │   ├── index.rst
│   │   │   ├── languages.rst
│   │   │   ├── lists.rst
│   │   │   ├── messages
│   │   │   │   ├── catalog.rst
│   │   │   │   ├── extract.rst
│   │   │   │   ├── index.rst
│   │   │   │   ├── mofile.rst
│   │   │   │   └── pofile.rst
│   │   │   ├── numbers.rst
│   │   │   ├── plural.rst
│   │   │   ├── support.rst
│   │   │   └── units.rst
│   │   ├── changelog.rst
│   │   ├── cmdline.rst
│   │   ├── conf.py
│   │   ├── dates.rst
│   │   ├── dev.rst
│   │   ├── index.rst
│   │   ├── installation.rst
│   │   ├── intro.rst
│   │   ├── license.rst
│   │   ├── locale.rst
│   │   ├── make.bat
│   │   ├── Makefile
│   │   ├── messages.rst
│   │   ├── numbers.rst
│   │   ├── requirements.txt
│   │   ├── setup.rst
│   │   └── support.rst
│   ├── LICENSE
│   ├── Makefile
│   ├── MANIFEST.in
│   ├── pyproject.toml
│   ├── README.rst
│   ├── scripts
│   │   ├── download_import_cldr.py
│   │   ├── dump_data.py
│   │   ├── dump_global.py
│   │   ├── generate_authors.py
│   │   └── import_cldr.py
│   ├── setup.cfg
│   ├── setup.py
│   ├── tests
│   │   ├── __init__.py
│   │   ├── conftest.py
│   │   ├── messages
│   │   │   ├── __init__.py
│   │   │   ├── consts.py
│   │   │   ├── data
│   │   │   │   ├── mapping.cfg
│   │   │   │   ├── project
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── _hidden_by_default
│   │   │   │   │   │   └── hidden_file.py
│   │   │   │   │   ├── file1.py
│   │   │   │   │   ├── file2.py
│   │   │   │   │   ├── i18n
│   │   │   │   │   │   ├── de
│   │   │   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   │   │   ├── messages.mo
│   │   │   │   │   │   │   └── messages.po
│   │   │   │   │   │   ├── de_DE
│   │   │   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   │   │   ├── bar.po
│   │   │   │   │   │   │   ├── foo.po
│   │   │   │   │   │   │   └── messages.po
│   │   │   │   │   │   ├── fi_BUGGY
│   │   │   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   │   │   └── messages.po
│   │   │   │   │   │   ├── messages_non_fuzzy.pot
│   │   │   │   │   │   ├── messages.pot
│   │   │   │   │   │   └── ru_RU
│   │   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   │   └── messages.po
│   │   │   │   │   └── ignored
│   │   │   │   │   ├── a_test_file.txt
│   │   │   │   │   ├── an_example.txt
│   │   │   │   │   └── this_wont_normally_be_here.py
│   │   │   │   ├── setup.cfg
│   │   │   │   └── setup.py
│   │   │   ├── test_catalog.py
│   │   │   ├── test_checkers.py
│   │   │   ├── test_extract.py
│   │   │   ├── test_frontend.py
│   │   │   ├── test_js_extract.py
│   │   │   ├── test_jslexer.py
│   │   │   ├── test_mofile.py
│   │   │   ├── test_normalized_string.py
│   │   │   ├── test_plurals.py
│   │   │   ├── test_pofile.py
│   │   │   └── test_setuptools_frontend.py
│   │   ├── test_core.py
│   │   ├── test_date_intervals.py
│   │   ├── test_dates.py
│   │   ├── test_day_periods.py
│   │   ├── test_languages.py
│   │   ├── test_lists.py
│   │   ├── test_localedata.py
│   │   ├── test_numbers.py
│   │   ├── test_plural.py
│   │   ├── test_smoke.py
│   │   ├── test_support.py
│   │   └── test_util.py
│   └── tox.ini
├── docutils
│   ├── __init__.py
│   ├── __main__.py
│   ├── core.py
│   ├── docutils.conf
│   ├── examples.py
│   ├── frontend.py
│   ├── io.py
│   ├── languages
│   │   ├── __init__.py
│   │   ├── af.py
│   │   ├── ar.py
│   │   ├── ca.py
│   │   ├── cs.py
│   │   ├── da.py
│   │   ├── de.py
│   │   ├── en.py
│   │   ├── eo.py
│   │   ├── es.py
│   │   ├── fa.py
│   │   ├── fi.py
│   │   ├── fr.py
│   │   ├── gl.py
│   │   ├── he.py
│   │   ├── it.py
│   │   ├── ja.py
│   │   ├── ka.py
│   │   ├── ko.py
│   │   ├── lt.py
│   │   ├── lv.py
│   │   ├── nl.py
│   │   ├── pl.py
│   │   ├── pt_br.py
│   │   ├── ru.py
│   │   ├── sk.py
│   │   ├── sv.py
│   │   ├── uk.py
│   │   ├── zh_cn.py
│   │   └── zh_tw.py
│   ├── nodes.py
│   ├── parsers
│   │   ├── __init__.py
│   │   ├── commonmark_wrapper.py
│   │   ├── null.py
│   │   ├── recommonmark_wrapper.py
│   │   └── rst
│   │   ├── __init__.py
│   │   ├── directives
│   │   │   ├── __init__.py
│   │   │   ├── admonitions.py
│   │   │   ├── body.py
│   │   │   ├── html.py
│   │   │   ├── images.py
│   │   │   ├── misc.py
│   │   │   ├── parts.py
│   │   │   ├── references.py
│   │   │   └── tables.py
│   │   ├── include
│   │   │   ├── isoamsa.txt
│   │   │   ├── isoamsb.txt
│   │   │   ├── isoamsc.txt
│   │   │   ├── isoamsn.txt
│   │   │   ├── isoamso.txt
│   │   │   ├── isoamsr.txt
│   │   │   ├── isobox.txt
│   │   │   ├── isocyr1.txt
│   │   │   ├── isocyr2.txt
│   │   │   ├── isodia.txt
│   │   │   ├── isogrk1.txt
│   │   │   ├── isogrk2.txt
│   │   │   ├── isogrk3.txt
│   │   │   ├── isogrk4-wide.txt
│   │   │   ├── isogrk4.txt
│   │   │   ├── isolat1.txt
│   │   │   ├── isolat2.txt
│   │   │   ├── isomfrk-wide.txt
│   │   │   ├── isomfrk.txt
│   │   │   ├── isomopf-wide.txt
│   │   │   ├── isomopf.txt
│   │   │   ├── isomscr-wide.txt
│   │   │   ├── isomscr.txt
│   │   │   ├── isonum.txt
│   │   │   ├── isopub.txt
│   │   │   ├── isotech.txt
│   │   │   ├── mmlalias.txt
│   │   │   ├── mmlextra-wide.txt
│   │   │   ├── mmlextra.txt
│   │   │   ├── README.txt
│   │   │   ├── s5defs.txt
│   │   │   ├── xhtml1-lat1.txt
│   │   │   ├── xhtml1-special.txt
│   │   │   └── xhtml1-symbol.txt
│   │   ├── languages
│   │   │   ├── __init__.py
│   │   │   ├── af.py
│   │   │   ├── ar.py
│   │   │   ├── ca.py
│   │   │   ├── cs.py
│   │   │   ├── da.py
│   │   │   ├── de.py
│   │   │   ├── en.py
│   │   │   ├── eo.py
│   │   │   ├── es.py
│   │   │   ├── fa.py
│   │   │   ├── fi.py
│   │   │   ├── fr.py
│   │   │   ├── gl.py
│   │   │   ├── he.py
│   │   │   ├── it.py
│   │   │   ├── ja.py
│   │   │   ├── ka.py
│   │   │   ├── ko.py
│   │   │   ├── lt.py
│   │   │   ├── lv.py
│   │   │   ├── nl.py
│   │   │   ├── pl.py
│   │   │   ├── pt_br.py
│   │   │   ├── ru.py
│   │   │   ├── sk.py
│   │   │   ├── sv.py
│   │   │   ├── uk.py
│   │   │   ├── zh_cn.py
│   │   │   └── zh_tw.py
│   │   ├── roles.py
│   │   ├── states.py
│   │   └── tableparser.py
│   ├── readers
│   │   ├── __init__.py
│   │   ├── doctree.py
│   │   ├── pep.py
│   │   └── standalone.py
│   ├── statemachine.py
│   ├── transforms
│   │   ├── __init__.py
│   │   ├── components.py
│   │   ├── frontmatter.py
│   │   ├── misc.py
│   │   ├── parts.py
│   │   ├── peps.py
│   │   ├── references.py
│   │   ├── universal.py
│   │   └── writer_aux.py
│   ├── utils
│   │   ├── __init__.py
│   │   ├── code_analyzer.py
│   │   ├── error_reporting.py
│   │   ├── math
│   │   │   ├── __init__.py
│   │   │   ├── latex2mathml.py
│   │   │   ├── math2html.py
│   │   │   ├── mathalphabet2unichar.py
│   │   │   ├── mathml_elements.py
│   │   │   ├── tex2mathml_extern.py
│   │   │   ├── tex2unichar.py
│   │   │   └── unichar2tex.py
│   │   ├── punctuation_chars.py
│   │   ├── roman.py
│   │   ├── smartquotes.py
│   │   └── urischemes.py
│   └── writers
│   ├── __init__.py
│   ├── _html_base.py
│   ├── docutils_xml.py
│   ├── html4css1
│   │   ├── __init__.py
│   │   ├── html4css1.css
│   │   └── template.txt
│   ├── html5_polyglot
│   │   ├── __init__.py
│   │   ├── italic-field-names.css
│   │   ├── math.css
│   │   ├── minimal.css
│   │   ├── plain.css
│   │   ├── responsive.css
│   │   ├── template.txt
│   │   └── tuftig.css
│   ├── latex2e
│   │   ├── __init__.py
│   │   ├── default.tex
│   │   ├── docutils.sty
│   │   ├── titlepage.tex
│   │   ├── titlingpage.tex
│   │   └── xelatex.tex
│   ├── manpage.py
│   ├── null.py
│   ├── odf_odt
│   │   ├── __init__.py
│   │   ├── prepstyles.py
│   │   ├── pygmentsformatter.py
│   │   └── styles.odt
│   ├── pep_html
│   │   ├── __init__.py
│   │   ├── pep.css
│   │   └── template.txt
│   ├── pseudoxml.py
│   ├── s5_html
│   │   ├── __init__.py
│   │   └── themes
│   │   ├── big-black
│   │   │   ├── __base__
│   │   │   ├── framing.css
│   │   │   └── pretty.css
│   │   ├── big-white
│   │   │   ├── framing.css
│   │   │   └── pretty.css
│   │   ├── default
│   │   │   ├── framing.css
│   │   │   ├── opera.css
│   │   │   ├── outline.css
│   │   │   ├── pretty.css
│   │   │   ├── print.css
│   │   │   ├── s5-core.css
│   │   │   ├── slides.css
│   │   │   └── slides.js
│   │   ├── medium-black
│   │   │   ├── __base__
│   │   │   └── pretty.css
│   │   ├── medium-white
│   │   │   ├── framing.css
│   │   │   └── pretty.css
│   │   ├── README.txt
│   │   ├── small-black
│   │   │   ├── __base__
│   │   │   └── pretty.css
│   │   └── small-white
│   │   ├── framing.css
│   │   └── pretty.css
│   └── xetex
│   └── __init__.py
├── docutils-0.21.2
│   ├── BUGS.txt
│   ├── COPYING.txt
│   ├── docs
│   │   ├── api
│   │   │   ├── publisher.txt
│   │   │   ├── runtime-settings.txt
│   │   │   └── transforms.txt
│   │   ├── dev
│   │   │   ├── distributing.txt
│   │   │   ├── enthought-plan.txt
│   │   │   ├── enthought-rfp.txt
│   │   │   ├── hacking.txt
│   │   │   ├── policies.txt
│   │   │   ├── pysource.dtd
│   │   │   ├── pysource.txt
│   │   │   ├── release.txt
│   │   │   ├── repository.txt
│   │   │   ├── rst
│   │   │   │   ├── alternatives.txt
│   │   │   │   └── problems.txt
│   │   │   ├── runtime-settings-processing.txt
│   │   │   ├── semantics.txt
│   │   │   ├── testing.txt
│   │   │   ├── todo.txt
│   │   │   └── website.txt
│   │   ├── header.txt
│   │   ├── header0.txt
│   │   ├── header2.txt
│   │   ├── howto
│   │   │   ├── cmdline-tool.txt
│   │   │   ├── html-stylesheets.txt
│   │   │   ├── i18n.txt
│   │   │   ├── rst-directives.txt
│   │   │   ├── rst-roles.txt
│   │   │   └── security.txt
│   │   ├── index.txt
│   │   ├── peps
│   │   │   ├── pep-0256.txt
│   │   │   ├── pep-0257.txt
│   │   │   ├── pep-0258.txt
│   │   │   └── pep-0287.txt
│   │   ├── ref
│   │   │   ├── doctree.txt
│   │   │   ├── docutils.dtd
│   │   │   ├── rst
│   │   │   │   ├── definitions.txt
│   │   │   │   ├── directives.txt
│   │   │   │   ├── introduction.txt
│   │   │   │   ├── mathematics.txt
│   │   │   │   ├── restructuredtext.txt
│   │   │   │   └── roles.txt
│   │   │   └── soextblx.dtd
│   │   └── user
│   │   ├── config.txt
│   │   ├── emacs.txt
│   │   ├── html.txt
│   │   ├── images
│   │   │   ├── big-black.png
│   │   │   ├── big-white.png
│   │   │   ├── default.png
│   │   │   ├── happy_monkey.png
│   │   │   ├── medium-black.png
│   │   │   ├── medium-white.png
│   │   │   ├── rsp-all.png
│   │   │   ├── rsp-breaks.png
│   │   │   ├── rsp-covers.png
│   │   │   ├── rsp-cuts.png
│   │   │   ├── rsp-empty.png
│   │   │   ├── rsp-objects.png
│   │   │   ├── rsp.svg
│   │   │   ├── s5-files.png
│   │   │   ├── s5-files.svg
│   │   │   ├── small-black.png
│   │   │   └── small-white.png
│   │   ├── latex.txt
│   │   ├── links.txt
│   │   ├── mailing-lists.txt
│   │   ├── Makefile.docutils-update
│   │   ├── manpage.txt
│   │   ├── odt.txt
│   │   ├── rst
│   │   │   ├── cheatsheet.txt
│   │   │   ├── demo.txt
│   │   │   ├── images
│   │   │   │   ├── biohazard-bitmap-scaling.svg
│   │   │   │   ├── biohazard-bitmap.svg
│   │   │   │   ├── biohazard-scaling.svg
│   │   │   │   ├── biohazard.png
│   │   │   │   ├── biohazard.svg
│   │   │   │   ├── biohazard.swf
│   │   │   │   ├── pens.mp4
│   │   │   │   ├── title-scaling.svg
│   │   │   │   ├── title.png
│   │   │   │   └── title.svg
│   │   │   ├── quickref.html
│   │   │   └── quickstart.txt
│   │   ├── slide-shows.txt
│   │   ├── smartquotes.txt
│   │   ├── todo-lists.txt
│   │   └── tools.txt
│   ├── FAQ.txt
│   ├── HISTORY.txt
│   ├── licenses
│   │   ├── BSD-2-Clause.txt
│   │   ├── docutils.conf
│   │   ├── gpl-3-0.txt
│   │   └── ZPL-2-1.txt
│   ├── PKG-INFO
│   ├── pyproject.toml
│   ├── README.txt
│   ├── RELEASE-NOTES.txt
│   ├── test
│   │   ├── __init__.py
│   │   ├── alltests.py
│   │   ├── conftest.py
│   │   ├── data
│   │   │   ├── circle-broken.svg
│   │   │   ├── circle.svg
│   │   │   ├── config_1.txt
│   │   │   ├── config_2.txt
│   │   │   ├── config_encoding_2.txt
│   │   │   ├── config_encoding.txt
│   │   │   ├── config_list_2.txt
│   │   │   ├── config_list.txt
│   │   │   ├── config_old.txt
│   │   │   ├── config_syntax_error.txt
│   │   │   ├── csv_data.txt
│   │   │   ├── csv_dep.txt
│   │   │   ├── dependencies.txt
│   │   │   ├── full-template.txt
│   │   │   ├── ham.css
│   │   │   ├── ham.tex
│   │   │   ├── help
│   │   │   │   ├── docutils.txt
│   │   │   │   ├── rst2html.txt
│   │   │   │   └── rst2latex.txt
│   │   │   ├── include.txt
│   │   │   ├── latin1.txt
│   │   │   ├── latin2.txt
│   │   │   ├── raw.txt
│   │   │   ├── stylesheet.txt
│   │   │   ├── utf-16-le-sig.txt
│   │   │   ├── utf-8-sig.txt
│   │   │   └── utf8.txt
│   │   ├── docutils.conf
│   │   ├── functional
│   │   │   ├── expected
│   │   │   │   ├── buggy_mathml_blahtexml.html
│   │   │   │   ├── buggy_mathml_pandoc.html
│   │   │   │   ├── buggy_mathml_ttm.html
│   │   │   │   ├── buggy_mathml.html
│   │   │   │   ├── compact_lists.html
│   │   │   │   ├── cyrillic.tex
│   │   │   │   ├── dangerous.html
│   │   │   │   ├── field_name_limit.html
│   │   │   │   ├── footnotes_html5.html
│   │   │   │   ├── latex_babel.tex
│   │   │   │   ├── latex_cornercases.tex
│   │   │   │   ├── latex_docinfo.tex
│   │   │   │   ├── latex_leavevmode.tex
│   │   │   │   ├── latex_literal_block_fancyvrb.tex
│   │   │   │   ├── latex_literal_block_listings.tex
│   │   │   │   ├── latex_literal_block_verbatim.tex
│   │   │   │   ├── latex_literal_block_verbatimtab.tex
│   │   │   │   ├── latex_literal_block.tex
│   │   │   │   ├── latex_memoir.tex
│   │   │   │   ├── math_experiments_mathml_blahtexml.html
│   │   │   │   ├── math_experiments_mathml_pandoc.html
│   │   │   │   ├── math_experiments_mathml_ttm.html
│   │   │   │   ├── math_experiments_mathml.html
│   │   │   │   ├── math_output_html.html
│   │   │   │   ├── math_output_latex.html
│   │   │   │   ├── math_output_mathjax.html
│   │   │   │   ├── math_output_mathml.html
│   │   │   │   ├── mathematics_mathml_blahtexml.html
│   │   │   │   ├── mathematics_mathml_pandoc.html
│   │   │   │   ├── mathematics_mathml_ttm.html
│   │   │   │   ├── mathematics_mathml.html
│   │   │   │   ├── misc_rst_html4css1.html
│   │   │   │   ├── misc_rst_html5.html
│   │   │   │   ├── odt_basic.odt
│   │   │   │   ├── odt_classifier.odt
│   │   │   │   ├── odt_contents.odt
│   │   │   │   ├── odt_custom_headfoot.odt
│   │   │   │   ├── odt_footnotes.odt
│   │   │   │   ├── odt_header_footer.odt
│   │   │   │   ├── odt_image.odt
│   │   │   │   ├── odt_literal_block.odt
│   │   │   │   ├── odt_nested_class.odt
│   │   │   │   ├── odt_no_class.odt
│   │   │   │   ├── odt_raw.odt
│   │   │   │   ├── odt_tables1.odt
│   │   │   │   ├── odt_unnested_class.odt
│   │   │   │   ├── pep_html.html
│   │   │   │   ├── rst_html5_tuftig.html
│   │   │   │   ├── standalone_rst_docutils_xml.xml
│   │   │   │   ├── standalone_rst_html4css1.html
│   │   │   │   ├── standalone_rst_html5.html
│   │   │   │   ├── standalone_rst_latex.tex
│   │   │   │   ├── standalone_rst_manpage.man
│   │   │   │   ├── standalone_rst_pseudoxml.txt
│   │   │   │   ├── standalone_rst_s5_html_1.html
│   │   │   │   ├── standalone_rst_s5_html_2.html
│   │   │   │   ├── standalone_rst_xetex.tex
│   │   │   │   ├── ui
│   │   │   │   │   ├── default
│   │   │   │   │   │   ├── framing.css
│   │   │   │   │   │   ├── opera.css
│   │   │   │   │   │   ├── outline.css
│   │   │   │   │   │   ├── pretty.css
│   │   │   │   │   │   ├── print.css
│   │   │   │   │   │   ├── s5-core.css
│   │   │   │   │   │   ├── slides.css
│   │   │   │   │   │   └── slides.js
│   │   │   │   │   └── small-black
│   │   │   │   │   ├── framing.css
│   │   │   │   │   ├── opera.css
│   │   │   │   │   ├── outline.css
│   │   │   │   │   ├── pretty.css
│   │   │   │   │   ├── print.css
│   │   │   │   │   ├── s5-core.css
│   │   │   │   │   ├── slides.css
│   │   │   │   │   └── slides.js
│   │   │   │   └── xetex-cyrillic.tex
│   │   │   ├── input
│   │   │   │   ├── compact_lists.txt
│   │   │   │   ├── cyrillic.txt
│   │   │   │   ├── dangerous.txt
│   │   │   │   ├── data
│   │   │   │   │   ├── blue square.png
│   │   │   │   │   ├── classes_latex.txt
│   │   │   │   │   ├── comprehensive-math-test.txt
│   │   │   │   │   ├── custom_roles_latex.txt
│   │   │   │   │   ├── custom_roles.txt
│   │   │   │   │   ├── embed_images.txt
│   │   │   │   │   ├── errors.txt
│   │   │   │   │   ├── header_footer.txt
│   │   │   │   │   ├── html4css1.css -> ../../../../docutils/writers/html4css1/html4css1.css
│   │   │   │   │   ├── html5-features.txt
│   │   │   │   │   ├── html5-text-level-tags.txt
│   │   │   │   │   ├── hyperlinking.txt
│   │   │   │   │   ├── interactive-button.svg
│   │   │   │   │   ├── latex_encoding.txt
│   │   │   │   │   ├── latex-problematic.txt
│   │   │   │   │   ├── list_table.txt
│   │   │   │   │   ├── math_experiments.txt
│   │   │   │   │   ├── math.css -> ../../../../docutils/writers/html5_polyglot/math.css
│   │   │   │   │   ├── math.txt
│   │   │   │   │   ├── minimal.css -> ../../../../docutils/writers/html5_polyglot/minimal.css
│   │   │   │   │   ├── nonalphanumeric.txt
│   │   │   │   │   ├── object-with-hyperlink.svg
│   │   │   │   │   ├── option_lists.txt
│   │   │   │   │   ├── plain.css -> ../../../../docutils/writers/html5_polyglot/plain.css
│   │   │   │   │   ├── responsive.css -> ../../../../docutils/writers/html5_polyglot/responsive.css
│   │   │   │   │   ├── section_titles.txt
│   │   │   │   │   ├── standard.txt
│   │   │   │   │   ├── svg_images.txt
│   │   │   │   │   ├── swf_images.txt
│   │   │   │   │   ├── table_colspan.txt
│   │   │   │   │   ├── table_complex.txt
│   │   │   │   │   ├── table_rowspan.txt
│   │   │   │   │   ├── tables_latex.txt
│   │   │   │   │   ├── tuftig.css -> ../../../../docutils/writers/html5_polyglot/tuftig.css
│   │   │   │   │   ├── unicode.txt
│   │   │   │   │   ├── urls.txt
│   │   │   │   │   └── video.txt
│   │   │   │   ├── field_list.txt
│   │   │   │   ├── footnotes.txt
│   │   │   │   ├── latex_babel.txt
│   │   │   │   ├── latex_cornercases.txt
│   │   │   │   ├── latex_docinfo.txt
│   │   │   │   ├── latex_leavevmode.txt
│   │   │   │   ├── latex_literal_block.txt
│   │   │   │   ├── misc_rst_html4css1.txt
│   │   │   │   ├── misc_rst_html5.txt
│   │   │   │   ├── odt_basic.txt
│   │   │   │   ├── odt_classifier.txt
│   │   │   │   ├── odt_contents.txt
│   │   │   │   ├── odt_custom_headfoot.txt
│   │   │   │   ├── odt_footnotes.txt
│   │   │   │   ├── odt_header_footer.txt
│   │   │   │   ├── odt_image.txt
│   │   │   │   ├── odt_literal_block.txt
│   │   │   │   ├── odt_nested_class.txt
│   │   │   │   ├── odt_no_class.txt
│   │   │   │   ├── odt_raw.txt
│   │   │   │   ├── odt_tables1.txt
│   │   │   │   ├── odt_unnested_class.txt
│   │   │   │   ├── pep_html.txt
│   │   │   │   ├── rst_html5_tuftig.txt
│   │   │   │   ├── simple.txt
│   │   │   │   ├── standalone_rst_docutils_xml.txt
│   │   │   │   ├── standalone_rst_html4css1.txt
│   │   │   │   ├── standalone_rst_html5.txt
│   │   │   │   ├── standalone_rst_latex.txt
│   │   │   │   ├── standalone_rst_manpage.txt
│   │   │   │   ├── standalone_rst_pseudoxml.txt
│   │   │   │   ├── standalone_rst_s5_html.txt
│   │   │   │   └── standalone_rst_xetex.txt
│   │   │   ├── output
│   │   │   │   └── README.txt
│   │   │   ├── README.txt
│   │   │   └── tests
│   │   │   ├── compact_lists.py
│   │   │   ├── dangerous.py
│   │   │   ├── field_name_limit.py
│   │   │   ├── footnotes_html5.py
│   │   │   ├── latex_babel.py
│   │   │   ├── latex_cornercases.py
│   │   │   ├── latex_cyrillic.py
│   │   │   ├── latex_docinfo.py
│   │   │   ├── latex_leavevmode.py
│   │   │   ├── latex_literal_block_fancyvrb.py
│   │   │   ├── latex_literal_block_listings.py
│   │   │   ├── latex_literal_block_verbatim.py
│   │   │   ├── latex_literal_block_verbatimtab.py
│   │   │   ├── latex_literal_block.py
│   │   │   ├── latex_memoir.py
│   │   │   ├── math_output_html.py
│   │   │   ├── math_output_latex.py
│   │   │   ├── math_output_mathjax.py
│   │   │   ├── math_output_mathml.py
│   │   │   ├── misc_rst_html4css1.py
│   │   │   ├── misc_rst_html5.py
│   │   │   ├── pep_html.py
│   │   │   ├── standalone_rst_docutils_xml.py
│   │   │   ├── standalone_rst_html4css1.py
│   │   │   ├── standalone_rst_html5_tuftig.py
│   │   │   ├── standalone_rst_html5.py
│   │   │   ├── standalone_rst_latex.py
│   │   │   ├── standalone_rst_manpage.py
│   │   │   ├── standalone_rst_pseudoxml.py
│   │   │   ├── standalone_rst_s5_html_1.py
│   │   │   ├── standalone_rst_s5_html_2.py
│   │   │   ├── standalone_rst_xetex.py
│   │   │   └── xetex_cyrillic.py
│   │   ├── local_dummy_lang.py
│   │   ├── local-parser.py
│   │   ├── local-reader.py
│   │   ├── local-writer.py
│   │   ├── test__init__.py
│   │   ├── test_CLI.py
│   │   ├── test_dependencies.py
│   │   ├── test_error_reporting.py
│   │   ├── test_functional.py
│   │   ├── test_io.py
│   │   ├── test_language.py
│   │   ├── test_nodes.py
│   │   ├── test_parsers
│   │   │   ├── __init__.py
│   │   │   ├── test_get_parser_class.py
│   │   │   ├── test_recommonmark
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_block_quotes.py
│   │   │   │   ├── test_bullet_lists.py
│   │   │   │   ├── test_enumerated_lists.py
│   │   │   │   ├── test_html_blocks.py
│   │   │   │   ├── test_inline_markup.py
│   │   │   │   ├── test_line_length_limit_default.py
│   │   │   │   ├── test_line_length_limit.py
│   │   │   │   ├── test_literal_blocks.py
│   │   │   │   ├── test_misc.py
│   │   │   │   ├── test_paragraphs.py
│   │   │   │   ├── test_section_headers.py
│   │   │   │   ├── test_targets.py
│   │   │   │   └── test_transitions.py
│   │   │   └── test_rst
│   │   │   ├── __init__.py
│   │   │   ├── includes
│   │   │   │   ├── include14.txt
│   │   │   │   └── include9.txt
│   │   │   ├── test_block_quotes.py
│   │   │   ├── test_bullet_lists.py
│   │   │   ├── test_character_level_inline_markup.py
│   │   │   ├── test_citations.py
│   │   │   ├── test_comments.py
│   │   │   ├── test_definition_lists.py
│   │   │   ├── test_directives
│   │   │   │   ├── __init__.py
│   │   │   │   ├── empty.txt
│   │   │   │   ├── include 11.txt
│   │   │   │   ├── include_literal.txt
│   │   │   │   ├── include.md
│   │   │   │   ├── include1.txt
│   │   │   │   ├── include10.txt
│   │   │   │   ├── include12.txt
│   │   │   │   ├── include13.txt
│   │   │   │   ├── include2.txt
│   │   │   │   ├── include3.txt
│   │   │   │   ├── include8.txt
│   │   │   │   ├── includes
│   │   │   │   │   ├── include14.txt
│   │   │   │   │   ├── include15.txt
│   │   │   │   │   ├── include16.txt
│   │   │   │   │   ├── include4.txt
│   │   │   │   │   ├── include5.txt
│   │   │   │   │   ├── more
│   │   │   │   │   │   └── include6.txt
│   │   │   │   │   └── sibling
│   │   │   │   │   └── include7.txt
│   │   │   │   ├── raw1.txt
│   │   │   │   ├── test__init__.py
│   │   │   │   ├── test_admonitions_de.py
│   │   │   │   ├── test_admonitions_dummy_lang.py
│   │   │   │   ├── test_admonitions.py
│   │   │   │   ├── test_block_quotes.py
│   │   │   │   ├── test_class.py
│   │   │   │   ├── test_code_long.py
│   │   │   │   ├── test_code_none.py
│   │   │   │   ├── test_code_parsing.py
│   │   │   │   ├── test_code.py
│   │   │   │   ├── test_compound.py
│   │   │   │   ├── test_container.py
│   │   │   │   ├── test_contents.py
│   │   │   │   ├── test_date.py
│   │   │   │   ├── test_decorations.py
│   │   │   │   ├── test_default_role.py
│   │   │   │   ├── test_figures.py
│   │   │   │   ├── test_images.py
│   │   │   │   ├── test_include.py
│   │   │   │   ├── test_line_blocks.py
│   │   │   │   ├── test_math.py
│   │   │   │   ├── test_meta.py
│   │   │   │   ├── test_parsed_literals.py
│   │   │   │   ├── test_raw.py
│   │   │   │   ├── test_replace_fr.py
│   │   │   │   ├── test_replace.py
│   │   │   │   ├── test_role.py
│   │   │   │   ├── test_rubrics.py
│   │   │   │   ├── test_sectnum.py
│   │   │   │   ├── test_sidebars.py
│   │   │   │   ├── test_tables.py
│   │   │   │   ├── test_target_notes.py
│   │   │   │   ├── test_test_directives.py
│   │   │   │   ├── test_title.py
│   │   │   │   ├── test_topics.py
│   │   │   │   ├── test_unicode.py
│   │   │   │   ├── test_unknown.py
│   │   │   │   └── utf-16.csv
│   │   │   ├── test_doctest_blocks.py
│   │   │   ├── test_east_asian_text.py
│   │   │   ├── test_enumerated_lists.py
│   │   │   ├── test_field_lists.py
│   │   │   ├── test_footnotes.py
│   │   │   ├── test_inline_markup.py
│   │   │   ├── test_interpreted_fr.py
│   │   │   ├── test_interpreted.py
│   │   │   ├── test_line_blocks.py
│   │   │   ├── test_line_length_limit_default.py
│   │   │   ├── test_line_length_limit.py
│   │   │   ├── test_literal_blocks.py
│   │   │   ├── test_misc.py
│   │   │   ├── test_option_lists.py
│   │   │   ├── test_outdenting.py
│   │   │   ├── test_paragraphs.py
│   │   │   ├── test_root_prefix.py
│   │   │   ├── test_section_headers.py
│   │   │   ├── test_SimpleTableParser.py
│   │   │   ├── test_source_line.py
│   │   │   ├── test_substitutions.py
│   │   │   ├── test_TableParser.py
│   │   │   ├── test_tables.py
│   │   │   ├── test_targets.py
│   │   │   └── test_transitions.py
│   │   ├── test_pickle.py
│   │   ├── test_publisher.py
│   │   ├── test_readers
│   │   │   ├── __init__.py
│   │   │   ├── test_get_reader_class.py
│   │   │   └── test_pep
│   │   │   ├── __init__.py
│   │   │   ├── test_inline_markup.py
│   │   │   └── test_rfc2822.py
│   │   ├── test_settings.py
│   │   ├── test_statemachine.py
│   │   ├── test_transforms
│   │   │   ├── __init__.py
│   │   │   ├── test__init__.py
│   │   │   ├── test_class.py
│   │   │   ├── test_contents.py
│   │   │   ├── test_docinfo.py
│   │   │   ├── test_doctitle.py
│   │   │   ├── test_expose_internals.py
│   │   │   ├── test_filter_messages.py
│   │   │   ├── test_filter.py
│   │   │   ├── test_footnotes.py
│   │   │   ├── test_hyperlinks_de.py
│   │   │   ├── test_hyperlinks.py
│   │   │   ├── test_messages.py
│   │   │   ├── test_peps.py
│   │   │   ├── test_sectnum.py
│   │   │   ├── test_smartquotes.py
│   │   │   ├── test_strip_comments.py
│   │   │   ├── test_strip_elements_with_class.py
│   │   │   ├── test_substitution_expansion_length_limit.py
│   │   │   ├── test_substitutions.py
│   │   │   ├── test_target_notes.py
│   │   │   ├── test_transitions.py
│   │   │   └── test_writer_aux.py
│   │   ├── test_traversals.py
│   │   ├── test_utils
│   │   │   ├── __init__.py
│   │   │   ├── test__init__.py
│   │   │   └── test_math
│   │   │   ├── __init__.py
│   │   │   ├── test__init__.py
│   │   │   ├── test_mathml_elements.py
│   │   │   └── test_tex2mathml_extern.py
│   │   ├── test_viewlist.py
│   │   └── test_writers
│   │   ├── __init__.py
│   │   ├── test_docutils_xml.py
│   │   ├── test_get_writer_class.py
│   │   ├── test_html4css1_misc.py
│   │   ├── test_html4css1_parts.py
│   │   ├── test_html4css1_template.py
│   │   ├── test_html5_polyglot_misc.py
│   │   ├── test_html5_polyglot_parts.py
│   │   ├── test_html5_template.py
│   │   ├── test_latex2e_misc.py
│   │   ├── test_latex2e.py
│   │   ├── test_manpage.py
│   │   ├── test_null.py
│   │   ├── test_odt.py
│   │   ├── test_pseudoxml.py
│   │   └── test_s5.py
│   ├── THANKS.txt
│   └── tools
│   ├── buildhtml.py
│   ├── dev
│   │   ├── create_unimap.py
│   │   ├── generate_punctuation_chars.py
│   │   ├── profile_docutils.py
│   │   ├── quicktest.py
│   │   ├── README.txt
│   │   └── unicode2rstsubs.py
│   ├── docutils-cli.py
│   ├── docutils.conf
│   ├── editors
│   │   ├── emacs
│   │   │   ├── IDEAS.rst
│   │   │   ├── README.txt
│   │   │   ├── rst.el
│   │   │   └── tests
│   │   │   ├── adjust-section.el
│   │   │   ├── adjust-uc_doc.rst
│   │   │   ├── adjust-uc.el
│   │   │   ├── Ado.el
│   │   │   ├── adornment.el
│   │   │   ├── apply-block.el
│   │   │   ├── buffer.el
│   │   │   ├── comment.el
│   │   │   ├── ert-buffer.el
│   │   │   ├── fill.el
│   │   │   ├── font-lock.el
│   │   │   ├── Hdr.el
│   │   │   ├── helpers.el
│   │   │   ├── imenu.el
│   │   │   ├── indent.el
│   │   │   ├── init.el
│   │   │   ├── items.el
│   │   │   ├── Makefile
│   │   │   ├── movement.el
│   │   │   ├── re.el
│   │   │   ├── README.txt
│   │   │   ├── shift.el
│   │   │   ├── Stn.el
│   │   │   ├── toc.el
│   │   │   ├── tree.el
│   │   │   └── Ttl.el
│   │   └── README.txt
│   ├── rst2html.py
│   ├── rst2html4.py
│   ├── rst2html5.py
│   ├── rst2latex.py
│   ├── rst2man.py
│   ├── rst2odt_prepstyles.py
│   ├── rst2odt.py
│   ├── rst2pseudoxml.py
│   ├── rst2s5.py
│   ├── rst2xetex.py
│   ├── rst2xml.py
│   ├── rstpep2html.py
│   └── test
│   └── test_buildhtml.py
├── imagesize
│   ├── __init__.py
│   └── imagesize.py
├── jinja-3.1.3
│   ├── artwork
│   │   └── jinjalogo.svg
│   ├── CHANGES.rst
│   ├── CODE_OF_CONDUCT.md
│   ├── CONTRIBUTING.rst
│   ├── docs
│   │   ├── _static
│   │   │   ├── jinja-logo-sidebar.png
│   │   │   └── jinja-logo.png
│   │   ├── api.rst
│   │   ├── changes.rst
│   │   ├── conf.py
│   │   ├── examples
│   │   │   ├── cache_extension.py
│   │   │   └── inline_gettext_extension.py
│   │   ├── extensions.rst
│   │   ├── faq.rst
│   │   ├── index.rst
│   │   ├── integration.rst
│   │   ├── intro.rst
│   │   ├── license.rst
│   │   ├── make.bat
│   │   ├── Makefile
│   │   ├── nativetypes.rst
│   │   ├── sandbox.rst
│   │   ├── switching.rst
│   │   ├── templates.rst
│   │   └── tricks.rst
│   ├── examples
│   │   └── basic
│   │   ├── cycle.py
│   │   ├── debugger.py
│   │   ├── inheritance.py
│   │   ├── templates
│   │   │   ├── broken.html
│   │   │   └── subbroken.html
│   │   ├── test_filter_and_linestatements.py
│   │   ├── test_loop_filter.py
│   │   ├── test.py
│   │   └── translate.py
│   ├── LICENSE.rst
│   ├── MANIFEST.in
│   ├── README.rst
│   ├── requirements
│   │   ├── build.in
│   │   ├── build.txt
│   │   ├── dev.in
│   │   ├── dev.txt
│   │   ├── docs.in
│   │   ├── docs.txt
│   │   ├── tests.in
│   │   ├── tests.txt
│   │   ├── typing.in
│   │   └── typing.txt
│   ├── scripts
│   │   └── generate_identifier_pattern.py
│   ├── setup.cfg
│   ├── setup.py
│   ├── src
│   ├── tests
│   │   ├── conftest.py
│   │   ├── res
│   │   │   ├── __init__.py
│   │   │   ├── package.zip
│   │   │   ├── templates
│   │   │   │   ├── broken.html
│   │   │   │   ├── foo
│   │   │   │   │   └── test.html
│   │   │   │   ├── mojibake.txt
│   │   │   │   ├── syntaxerror.html
│   │   │   │   └── test.html
│   │   │   └── templates2
│   │   │   └── foo
│   │   ├── test_api.py
│   │   ├── test_async_filters.py
│   │   ├── test_async.py
│   │   ├── test_bytecode_cache.py
│   │   ├── test_compile.py
│   │   ├── test_core_tags.py
│   │   ├── test_debug.py
│   │   ├── test_ext.py
│   │   ├── test_filters.py
│   │   ├── test_idtracking.py
│   │   ├── test_imports.py
│   │   ├── test_inheritance.py
│   │   ├── test_lexnparse.py
│   │   ├── test_loader.py
│   │   ├── test_nativetypes.py
│   │   ├── test_nodes.py
│   │   ├── test_pickle.py
│   │   ├── test_regression.py
│   │   ├── test_runtime.py
│   │   ├── test_security.py
│   │   ├── test_tests.py
│   │   └── test_utils.py
│   └── tox.ini
├── jinja2
│   ├── __init__.py
│   ├── _identifier.py
│   ├── async_utils.py
│   ├── bccache.py
│   ├── compiler.py
│   ├── constants.py
│   ├── debug.py
│   ├── defaults.py
│   ├── environment.py
│   ├── exceptions.py
│   ├── ext.py
│   ├── filters.py
│   ├── idtracking.py
│   ├── lexer.py
│   ├── loaders.py
│   ├── meta.py
│   ├── nativetypes.py
│   ├── nodes.py
│   ├── optimizer.py
│   ├── parser.py
│   ├── py.typed
│   ├── runtime.py
│   ├── sandbox.py
│   ├── tests.py
│   ├── utils.py
│   └── visitor.py
├── markupsafe
│   ├── __init__.py
│   ├── _native.py
│   ├── _speedups.c
│   ├── _speedups.pyi
│   └── py.typed
├── markupsafe-2.1.1
│   ├── bench
│   │   ├── bench_basic.py
│   │   ├── bench_largestring.py
│   │   ├── bench_long_empty_string.py
│   │   ├── bench_long_suffix.py
│   │   ├── bench_short_empty_string.py
│   │   └── runbench.py
│   ├── CHANGES.rst
│   ├── CONTRIBUTING.rst
│   ├── docs
│   │   ├── changes.rst
│   │   ├── conf.py
│   │   ├── escaping.rst
│   │   ├── formatting.rst
│   │   ├── html.rst
│   │   ├── index.rst
│   │   ├── license.rst
│   │   ├── make.bat
│   │   └── Makefile
│   ├── LICENSE.rst
│   ├── MANIFEST.in
│   ├── README.rst
│   ├── requirements
│   │   ├── dev.in
│   │   ├── dev.txt
│   │   ├── docs.in
│   │   ├── docs.txt
│   │   ├── tests.in
│   │   ├── tests.txt
│   │   ├── typing.in
│   │   └── typing.txt
│   ├── setup.cfg
│   ├── setup.py
│   ├── src
│   ├── tests
│   │   ├── conftest.py
│   │   ├── test_escape.py
│   │   ├── test_exception_custom_html.py
│   │   ├── test_leak.py
│   │   └── test_markupsafe.py
│   └── tox.ini
├── sphinx
│   ├── __init__.py
│   ├── __main__.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
│   │   │   └── transforms.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
│   │   ├── code.py
│   │   ├── other.py
│   │   └── patches.py
│   ├── domains
│   │   ├── __init__.py
│   │   ├── c.py
│   │   ├── changeset.py
│   │   ├── citation.py
│   │   ├── cpp.py
│   │   ├── index.py
│   │   ├── javascript.py
│   │   ├── math.py
│   │   ├── python.py
│   │   ├── rst.py
│   │   └── std.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.py
│   │   ├── autodoc
│   │   │   ├── __init__.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.py
│   │   ├── linkcode.py
│   │   ├── mathjax.py
│   │   ├── napoleon
│   │   │   ├── __init__.py
│   │   │   └── docstring.py
│   │   ├── todo.py
│   │   └── viewcode.py
│   ├── extension.py
│   ├── highlighting.py
│   ├── io.py
│   ├── jinja2glue.py
│   ├── locale
│   │   ├── __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
│   │   ├── 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_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
│   │   ├── 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_RS
│   │   │   └── LC_MESSAGES
│   │   │   ├── sphinx.js
│   │   │   ├── sphinx.mo
│   │   │   └── sphinx.po
│   │   ├── sr@latin
│   │   │   └── 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
│   │   │   └── LC_MESSAGES
│   │   │   ├── sphinx.js
│   │   │   ├── sphinx.mo
│   │   │   └── sphinx.po
│   │   └── zh_TW.Big5
│   │   └── 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
│   │   ├── da.py
│   │   ├── de.py
│   │   ├── en.py
│   │   ├── es.py
│   │   ├── fi.py
│   │   ├── fr.py
│   │   ├── hu.py
│   │   ├── it.py
│   │   ├── ja.py
│   │   ├── minified-js
│   │   │   ├── base-stemmer.js
│   │   │   ├── danish-stemmer.js
│   │   │   ├── dutch-stemmer.js
│   │   │   ├── finnish-stemmer.js
│   │   │   ├── french-stemmer.js
│   │   │   ├── german-stemmer.js
│   │   │   ├── hungarian-stemmer.js
│   │   │   ├── italian-stemmer.js
│   │   │   ├── norwegian-stemmer.js
│   │   │   ├── porter-stemmer.js
│   │   │   ├── portuguese-stemmer.js
│   │   │   ├── romanian-stemmer.js
│   │   │   ├── russian-stemmer.js
│   │   │   ├── spanish-stemmer.js
│   │   │   ├── swedish-stemmer.js
│   │   │   └── turkish-stemmer.js
│   │   ├── nl.py
│   │   ├── no.py
│   │   ├── non-minified-js
│   │   │   ├── base-stemmer.js
│   │   │   ├── danish-stemmer.js
│   │   │   ├── dutch-stemmer.js
│   │   │   ├── finnish-stemmer.js
│   │   │   ├── french-stemmer.js
│   │   │   ├── german-stemmer.js
│   │   │   ├── hungarian-stemmer.js
│   │   │   ├── italian-stemmer.js
│   │   │   ├── norwegian-stemmer.js
│   │   │   ├── porter-stemmer.js
│   │   │   ├── portuguese-stemmer.js
│   │   │   ├── romanian-stemmer.js
│   │   │   ├── russian-stemmer.js
│   │   │   ├── spanish-stemmer.js
│   │   │   ├── swedish-stemmer.js
│   │   │   └── turkish-stemmer.js
│   │   ├── pt.py
│   │   ├── ro.py
│   │   ├── ru.py
│   │   ├── sv.py
│   │   ├── tr.py
│   │   └── zh.py
│   ├── templates
│   │   ├── apidoc
│   │   │   ├── module.rst_t
│   │   │   ├── package.rst_t
│   │   │   └── toc.rst_t
│   │   ├── epub3
│   │   │   ├── container.xml
│   │   │   ├── content.opf_t
│   │   │   ├── mimetype
│   │   │   ├── nav.xhtml_t
│   │   │   └── toc.ncx_t
│   │   ├── gettext
│   │   │   └── message.pot_t
│   │   ├── graphviz
│   │   │   └── graphviz.css
│   │   ├── htmlhelp
│   │   │   ├── project.hhc
│   │   │   ├── project.hhp
│   │   │   └── project.stp
│   │   ├── imgmath
│   │   │   ├── preview.tex_t
│   │   │   └── template.tex_t
│   │   ├── latex
│   │   │   ├── latex.tex_t
│   │   │   ├── longtable.tex_t
│   │   │   ├── sphinxmessages.sty_t
│   │   │   ├── tabular.tex_t
│   │   │   └── tabulary.tex_t
│   │   ├── quickstart
│   │   │   ├── conf.py_t
│   │   │   ├── make.bat_t
│   │   │   ├── make.bat.new_t
│   │   │   ├── Makefile_t
│   │   │   ├── Makefile.new_t
│   │   │   └── root_doc.rst_t
│   │   └── texinfo
│   │   └── Makefile
│   ├── testing
│   │   ├── __init__.py
│   │   ├── fixtures.py
│   │   ├── path.py
│   │   ├── restructuredtext.py
│   │   └── util.py
│   ├── texinputs
│   │   ├── latexmkjarc_t
│   │   ├── latexmkrc_t
│   │   ├── LatinRules.xdy
│   │   ├── LICRcyr2utf8.xdy
│   │   ├── LICRlatin2utf8.xdy
│   │   ├── make.bat_t
│   │   ├── Makefile_t
│   │   ├── 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
│   ├── texinputs_win
│   │   └── Makefile_t
│   ├── themes
│   │   ├── agogo
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   ├── agogo.css_t
│   │   │   │   ├── bgfooter.png
│   │   │   │   └── bgtop.png
│   │   │   └── theme.conf
│   │   ├── 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_t
│   │   │   │   ├── doctools.js
│   │   │   │   ├── documentation_options.js_t
│   │   │   │   ├── file.png
│   │   │   │   ├── language_data.js_t
│   │   │   │   ├── minus.png
│   │   │   │   ├── plus.png
│   │   │   │   ├── searchtools.js
│   │   │   │   └── sphinx_highlight.js
│   │   │   └── theme.conf
│   │   ├── bizstyle
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   ├── background_b01.png
│   │   │   │   ├── bizstyle.css_t
│   │   │   │   ├── bizstyle.js_t
│   │   │   │   ├── css3-mediaqueries_src.js
│   │   │   │   └── css3-mediaqueries.js
│   │   │   └── theme.conf
│   │   ├── classic
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   ├── classic.css_t
│   │   │   │   └── sidebar.js_t
│   │   │   └── theme.conf
│   │   ├── default
│   │   │   ├── static
│   │   │   │   └── default.css
│   │   │   └── theme.conf
│   │   ├── epub
│   │   │   ├── epub-cover.html
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   └── epub.css_t
│   │   │   └── theme.conf
│   │   ├── haiku
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   ├── alert_info_32.png
│   │   │   │   ├── alert_warning_32.png
│   │   │   │   ├── bg-page.png
│   │   │   │   ├── bullet_orange.png
│   │   │   │   └── haiku.css_t
│   │   │   └── theme.conf
│   │   ├── nature
│   │   │   ├── static
│   │   │   │   └── nature.css_t
│   │   │   └── theme.conf
│   │   ├── nonav
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   └── nonav.css_t
│   │   │   └── theme.conf
│   │   ├── pyramid
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   ├── dialog-note.png
│   │   │   │   ├── dialog-seealso.png
│   │   │   │   ├── dialog-todo.png
│   │   │   │   ├── dialog-topic.png
│   │   │   │   ├── dialog-warning.png
│   │   │   │   ├── epub.css_t
│   │   │   │   ├── footerbg.png
│   │   │   │   ├── headerbg.png
│   │   │   │   ├── ie6.css
│   │   │   │   ├── middlebg.png
│   │   │   │   ├── pyramid.css_t
│   │   │   │   └── transparent.gif
│   │   │   └── theme.conf
│   │   ├── scrolls
│   │   │   ├── artwork
│   │   │   │   └── logo.svg
│   │   │   ├── layout.html
│   │   │   ├── static
│   │   │   │   ├── darkmetal.png
│   │   │   │   ├── headerbg.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── metal.png
│   │   │   │   ├── navigation.png
│   │   │   │   ├── print.css
│   │   │   │   ├── scrolls.css_t
│   │   │   │   ├── theme_extras.js
│   │   │   │   ├── watermark_blur.png
│   │   │   │   └── watermark.png
│   │   │   └── theme.conf
│   │   ├── sphinxdoc
│   │   │   ├── static
│   │   │   │   ├── contents.png
│   │   │   │   ├── navigation.png
│   │   │   │   └── sphinxdoc.css_t
│   │   │   └── theme.conf
│   │   └── traditional
│   │   ├── static
│   │   │   └── traditional.css_t
│   │   └── theme.conf
│   ├── theming.py
│   ├── transforms
│   │   ├── __init__.py
│   │   ├── compact_bullet_list.py
│   │   ├── i18n.py
│   │   ├── post_transforms
│   │   │   ├── __init__.py
│   │   │   ├── code.py
│   │   │   └── images.py
│   │   └── references.py
│   ├── util
│   │   ├── __init__.py
│   │   ├── _pathlib.py
│   │   ├── build_phase.py
│   │   ├── cfamily.py
│   │   ├── console.py
│   │   ├── display.py
│   │   ├── docfields.py
│   │   ├── docstrings.py
│   │   ├── docutils.py
│   │   ├── exceptions.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
│   │   ├── 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
└── sphinx-7.2.6
├── AUTHORS
├── bindep.txt
├── CHANGES
├── CODE_OF_CONDUCT
├── CONTRIBUTING.rst
├── doc
│   ├── _static
│   │   ├── bookcover.png
│   │   ├── conf.py.txt
│   │   ├── favicon.svg
│   │   ├── Makefile
│   │   ├── more.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
│   │   │   ├── sphinx13.css
│   │   │   └── sphinxheader.png
│   │   └── theme.conf
│   ├── authors.rst
│   ├── changes.rst
│   ├── conf.py
│   ├── development
│   │   ├── builders.rst
│   │   ├── index.rst
│   │   ├── overview.rst
│   │   ├── templating.rst
│   │   ├── theming.rst
│   │   └── tutorials
│   │   ├── autodoc_ext.rst
│   │   ├── examples
│   │   │   ├── autodoc_intenum.py
│   │   │   ├── helloworld.py
│   │   │   ├── README.rst
│   │   │   ├── recipe.py
│   │   │   └── todo.py
│   │   ├── helloworld.rst
│   │   ├── index.rst
│   │   ├── recipe.rst
│   │   └── todo.rst
│   ├── examples.rst
│   ├── extdev
│   │   ├── appapi.rst
│   │   ├── builderapi.rst
│   │   ├── collectorapi.rst
│   │   ├── deprecated.rst
│   │   ├── domainapi.rst
│   │   ├── envapi.rst
│   │   ├── i18n.rst
│   │   ├── index.rst
│   │   ├── logging.rst
│   │   ├── markupapi.rst
│   │   ├── nodes.rst
│   │   ├── parserapi.rst
│   │   ├── projectapi.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
│   ├── Makefile
│   ├── 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
│   ├── extensions
│   │   ├── 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
│   ├── restructuredtext
│   │   ├── basics.rst
│   │   ├── directives.rst
│   │   ├── domains.rst
│   │   ├── field-lists.rst
│   │   ├── index.rst
│   │   └── roles.rst
│   └── theming.rst
├── EXAMPLES
├── karma.conf.js
├── LICENSE
├── Makefile
├── package-lock.json
├── package.json
├── pyproject.toml
├── README.rst
├── tests
│   ├── __init__.py
│   ├── certs
│   │   └── cert.pem
│   ├── conftest.py
│   ├── ext_napoleon_pep526_data_google.py
│   ├── ext_napoleon_pep526_data_numpy.py
│   ├── js
│   │   ├── documentation_options.js
│   │   ├── searchtools.js
│   │   └── sphinx_highlight.js
│   ├── roots
│   │   ├── test-add_enumerable_node
│   │   │   ├── conf.py
│   │   │   ├── enumerable_node.py
│   │   │   ├── index.rst
│   │   │   └── rimg.png
│   │   ├── test-add_source_parser
│   │   │   ├── conf.py
│   │   │   └── source_parser.py
│   │   ├── test-add_source_parser-conflicts-with-users-setting
│   │   │   ├── conf.py
│   │   │   └── source_parser.py
│   │   ├── test-api-set-translator
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── nonext
│   │   │   │   └── conf.py
│   │   │   └── translator.py
│   │   ├── test-apidoc-duplicates
│   │   │   └── fish_licence
│   │   │   ├── halibut.cpython-38-x86_64-linux-gnu.so
│   │   │   └── halibut.pyx
│   │   ├── test-apidoc-pep420
│   │   │   └── a
│   │   │   └── b
│   │   │   ├── c
│   │   │   │   ├── __init__.py
│   │   │   │   └── d.py
│   │   │   ├── e
│   │   │   │   ├── __init__.py
│   │   │   │   └── f.py
│   │   │   └── x
│   │   │   └── y.py
│   │   ├── test-apidoc-subpackage-in-toc
│   │   │   └── parent
│   │   │   ├── __init__.py
│   │   │   └── child
│   │   │   ├── __init__.py
│   │   │   └── foo.py
│   │   ├── test-apidoc-toc
│   │   │   └── mypackage
│   │   │   ├── __init__.py
│   │   │   ├── main.py
│   │   │   ├── no_init
│   │   │   │   └── foo.py
│   │   │   ├── resource
│   │   │   │   ├── __init__.py
│   │   │   │   └── resource.txt
│   │   │   └── something
│   │   │   └── __init__.py
│   │   ├── test-apidoc-trailing-underscore
│   │   │   └── package_
│   │   │   ├── __init__.py
│   │   │   └── module_.py
│   │   ├── test-autosummary
│   │   │   ├── conf.py
│   │   │   ├── dummy_module.py
│   │   │   ├── index.rst
│   │   │   ├── sphinx.rst
│   │   │   └── underscore_module_.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-html-translator
│   │   │   ├── 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_colspan_and_rowspan.txt
│   │   │   ├── table_colspan_left.txt
│   │   │   ├── table_colspan.txt
│   │   │   ├── table_rowspan.txt
│   │   │   └── table.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-correct-year
│   │   │   ├── 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-raw
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-docutilsconf
│   │   │   ├── conf.py
│   │   │   ├── docutils.conf
│   │   │   └── 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-c-c_maximum_signature_line_length
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-domain-c-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
│   │   │   ├── 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-cpp-cpp_maximum_signature_line_length
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-domain-cpp-intersphinx
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-domain-js
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── module.rst
│   │   │   └── roles.rst
│   │   ├── test-domain-js-javascript_maximum_signature_line_length
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-domain-py
│   │   │   ├── abbr.rst
│   │   │   ├── canonical.rst
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── module_option.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-warning
│   │   │   ├── conf.py
│   │   │   └── index.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-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
│   │   │   ├── __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
│   │   │   ├── 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
│   │   │   ├── partialfunction.py
│   │   │   ├── partialmethod.py
│   │   │   ├── pep570.py
│   │   │   ├── pep604.py
│   │   │   ├── preserve_defaults_special_constructs.py
│   │   │   ├── preserve_defaults.py
│   │   │   ├── private.py
│   │   │   ├── process_docstring.py
│   │   │   ├── properties.py
│   │   │   ├── singledispatch.py
│   │   │   ├── singledispatchmethod.py
│   │   │   ├── slots.py
│   │   │   ├── sort_by_all.py
│   │   │   ├── TYPE_CHECKING.py
│   │   │   ├── typed_vars.py
│   │   │   ├── typehints.py
│   │   │   ├── typevar.py
│   │   │   ├── uninitialized_attributes.py
│   │   │   └── wrappedfunction.py
│   │   ├── test-ext-autosectionlabel
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-ext-autosectionlabel-prefix-document
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── 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-autosummary-filename-map
│   │   │   ├── autosummary_dummy_module.py
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── 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-recursive
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── package
│   │   │   │   ├── __init__.py
│   │   │   │   ├── module_importfail.py
│   │   │   │   ├── module.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-coverage
│   │   │   ├── conf.py
│   │   │   ├── coverage_ignored.py
│   │   │   ├── coverage_not_ignored.py
│   │   │   └── index.rst
│   │   ├── test-ext-doctest
│   │   │   ├── conf.py
│   │   │   └── doctest.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-extlinks-hardcoded-urls
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-ext-extlinks-hardcoded-urls-multiple-replacements
│   │   │   ├── 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
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── math.rst
│   │   │   ├── nomath.rst
│   │   │   └── page.rst
│   │   ├── test-ext-math-compat
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-ext-math-simple
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── 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
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── objects.rst
│   │   │   └── spam
│   │   │   ├── __init__.py
│   │   │   ├── mod1.py
│   │   │   ├── mod2.py
│   │   │   └── mod3.py
│   │   ├── test-ext-viewcode-find
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   └── not_a_package
│   │   │   ├── __init__.py
│   │   │   └── submodule.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-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
│   │   │   │   ├── API.html_t
│   │   │   │   ├── css
│   │   │   │   │   └── style.css
│   │   │   │   ├── index.rst
│   │   │   │   ├── rimg.png
│   │   │   │   └── subdir
│   │   │   ├── index.rst
│   │   │   ├── static
│   │   │   │   ├── API.html_t
│   │   │   │   ├── css
│   │   │   │   │   └── style.css
│   │   │   │   ├── index.rst
│   │   │   │   ├── js
│   │   │   │   │   └── custom.js
│   │   │   │   ├── rimg.png
│   │   │   │   └── subdir
│   │   │   └── 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_nested.py
│   │   │   │   └── test.py
│   │   │   └── index.rst
│   │   ├── test-intl
│   │   │   ├── _templates
│   │   │   │   └── contents.html
│   │   │   ├── admonitions.txt
│   │   │   ├── bom.txt
│   │   │   ├── conf.py
│   │   │   ├── definition_terms.txt
│   │   │   ├── docfields.txt
│   │   │   ├── external_links.txt
│   │   │   ├── figure.txt
│   │   │   ├── footnote.txt
│   │   │   ├── glossary_terms_inconsistency.txt
│   │   │   ├── glossary_terms.txt
│   │   │   ├── i18n.png
│   │   │   ├── img.png
│   │   │   ├── index_entries.txt
│   │   │   ├── index.txt
│   │   │   ├── label_target.txt
│   │   │   ├── literalblock.txt
│   │   │   ├── noqa.txt
│   │   │   ├── only.txt
│   │   │   ├── raw.txt
│   │   │   ├── refs_inconsistency.txt
│   │   │   ├── refs_python_domain.txt
│   │   │   ├── refs.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_inconsistency.po
│   │   │   ├── glossary_terms.po
│   │   │   ├── index_entries.po
│   │   │   ├── index.po
│   │   │   ├── label_target.po
│   │   │   ├── literalblock.po
│   │   │   ├── noqa.po
│   │   │   ├── only.po
│   │   │   ├── raw.po
│   │   │   ├── refs_inconsistency.po
│   │   │   ├── refs_python_domain.po
│   │   │   ├── refs.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_excluded.rst
│   │   │   ├── prolog_epilog_substitution.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-equations
│   │   │   ├── conf.py
│   │   │   ├── equations.rst
│   │   │   └── expects
│   │   │   └── latex-equations.tex
│   │   ├── test-latex-figure-in-admonition
│   │   │   ├── 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
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   └── otherdoc.rst
│   │   ├── test-latex-labels-before-module
│   │   │   ├── automodule1.py
│   │   │   ├── automodule2a.py
│   │   │   ├── automodule2b.py
│   │   │   ├── automodule3.py
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-latex-numfig
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── indexhowto.rst
│   │   │   └── indexmanual.rst
│   │   ├── test-latex-table
│   │   │   ├── _mytemplates
│   │   │   │   └── latex
│   │   │   │   └── longtable.tex_t
│   │   │   ├── complex.rst
│   │   │   ├── conf.py
│   │   │   ├── expects
│   │   │   │   ├── complex_spanning_cell.tex
│   │   │   │   ├── gridtable_with_tabularcolumn.tex
│   │   │   │   ├── gridtable.tex
│   │   │   │   ├── longtable_having_align.tex
│   │   │   │   ├── longtable_having_caption.tex
│   │   │   │   ├── longtable_having_problematic_cell.tex
│   │   │   │   ├── longtable_having_stub_columns_and_problematic_cell.tex
│   │   │   │   ├── longtable_having_verbatim.tex
│   │   │   │   ├── longtable_having_widths_and_problematic_cell.tex
│   │   │   │   ├── longtable_having_widths.tex
│   │   │   │   ├── longtable_with_tabularcolumn.tex
│   │   │   │   ├── longtable.tex
│   │   │   │   ├── simple_table.tex
│   │   │   │   ├── table_having_caption.tex
│   │   │   │   ├── table_having_problematic_cell.tex
│   │   │   │   ├── table_having_stub_columns_and_problematic_cell.tex
│   │   │   │   ├── table_having_threeparagraphs_cell_in_first_col.tex
│   │   │   │   ├── table_having_verbatim.tex
│   │   │   │   ├── table_having_widths_and_problematic_cell.tex
│   │   │   │   ├── table_having_widths.tex
│   │   │   │   ├── tabular_having_widths.tex
│   │   │   │   ├── tabularcolumn.tex
│   │   │   │   └── tabulary_having_widths.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
│   │   │   ├── conf.py
│   │   │   └── links.rst
│   │   ├── test-linkcheck-anchors-ignore
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-linkcheck-anchors-ignore-for-url
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-linkcheck-documents_exclude
│   │   │   ├── br0ken_link.rst
│   │   │   ├── broken_link.rst
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-linkcheck-localserver
│   │   │   ├── 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-raw-node
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-linkcheck-too-many-retries
│   │   │   ├── conf.py
│   │   │   └── index.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
│   │   │   ├── conf.py
│   │   │   ├── Dup1.rst
│   │   │   ├── Dup2.rst
│   │   │   ├── firstLineRule.rst
│   │   │   ├── index.rst
│   │   │   ├── LineContinuation.rst
│   │   │   ├── P1.rst
│   │   │   └── P2.rst
│   │   ├── test-prolog
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── markdown.md
│   │   │   ├── prolog_markdown_parser.py
│   │   │   └── restructuredtext.rst
│   │   ├── test-pycode
│   │   │   └── cp_1251_coded.py
│   │   ├── test-refonly_bullet_list
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-remote-logo
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-reST-code-block
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-reST-code-role
│   │   │   ├── conf.py
│   │   │   └── index.rst
│   │   ├── test-roles-download
│   │   │   ├── another
│   │   │   │   └── dummy.dat
│   │   │   ├── conf.py
│   │   │   ├── dummy.dat
│   │   │   └── index.rst
│   │   ├── test-root
│   │   │   ├── _templates
│   │   │   │   ├── contentssb.html
│   │   │   │   ├── customsb.html
│   │   │   │   └── layout.html
│   │   │   ├── autodoc_target.py
│   │   │   ├── autodoc.txt
│   │   │   ├── 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_orig.inc
│   │   │   ├── literal.inc
│   │   │   ├── Makefile
│   │   │   ├── 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
│   │   │   ├── 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
│   │   │   │   │   │   ├── staticimg.png
│   │   │   │   │   │   └── statictmpl.html_t
│   │   │   │   │   └── theme.conf
│   │   │   │   └── test-theme
│   │   │   │   └── theme.conf
│   │   │   └── ziptheme.zip
│   │   ├── test-tocdepth
│   │   │   ├── bar.rst
│   │   │   ├── baz.rst
│   │   │   ├── conf.py
│   │   │   ├── foo.rst
│   │   │   └── index.rst
│   │   ├── test-toctree
│   │   │   ├── bar.rst
│   │   │   ├── baz.rst
│   │   │   ├── conf.py
│   │   │   ├── foo.rst
│   │   │   ├── index.rst
│   │   │   ├── quux.rst
│   │   │   ├── qux.rst
│   │   │   └── tocdepth.rst
│   │   ├── test-toctree-domain-objects
│   │   │   ├── conf.py
│   │   │   ├── 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-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-versioning
│   │   │   ├── added.txt
│   │   │   ├── conf.py
│   │   │   ├── deleted_end.txt
│   │   │   ├── deleted.txt
│   │   │   ├── index.txt
│   │   │   ├── insert_beginning.txt
│   │   │   ├── insert_similar.txt
│   │   │   ├── insert.txt
│   │   │   ├── modified.txt
│   │   │   └── original.txt
│   │   └── test-warnings
│   │   ├── autodoc_fodder.py
│   │   ├── conf.py
│   │   ├── index.rst
│   │   ├── svgimg.pdf
│   │   ├── svgimg.svg
│   │   ├── undecodable.rst
│   │   └── wrongenc.inc
│   ├── test_addnodes.py
│   ├── test_api_translator.py
│   ├── test_application.py
│   ├── test_build_changes.py
│   ├── test_build_dirhtml.py
│   ├── test_build_epub.py
│   ├── test_build_gettext.py
│   ├── test_build_html.py
│   ├── test_build_latex.py
│   ├── test_build_linkcheck.py
│   ├── test_build_manpage.py
│   ├── test_build_texinfo.py
│   ├── test_build_text.py
│   ├── test_build.py
│   ├── test_builder.py
│   ├── test_catalogs.py
│   ├── test_config.py
│   ├── test_correct_year.py
│   ├── test_directive_code.py
│   ├── test_directive_object_description.py
│   ├── test_directive_only.py
│   ├── test_directive_other.py
│   ├── test_directive_patch.py
│   ├── test_directives_no_typesetting.py
│   ├── test_docutilsconf.py
│   ├── test_domain_c.py
│   ├── test_domain_cpp.py
│   ├── test_domain_js.py
│   ├── test_domain_py.py
│   ├── test_domain_rst.py
│   ├── test_domain_std.py
│   ├── test_environment_indexentries.py
│   ├── test_environment_record_dependencies.py
│   ├── test_environment_toctree.py
│   ├── test_environment.py
│   ├── test_errors.py
│   ├── test_events.py
│   ├── test_ext_apidoc.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_mock.py
│   ├── test_ext_autodoc_preserve_defaults.py
│   ├── test_ext_autodoc_private_members.py
│   ├── test_ext_autodoc.py
│   ├── test_ext_autosectionlabel.py
│   ├── test_ext_autosummary.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_imgconverter.py
│   ├── test_ext_imgmockconverter.py
│   ├── test_ext_inheritance_diagram.py
│   ├── test_ext_intersphinx.py
│   ├── test_ext_math.py
│   ├── test_ext_napoleon_docstring.py
│   ├── test_ext_napoleon.py
│   ├── test_ext_todo.py
│   ├── test_ext_viewcode.py
│   ├── test_extension.py
│   ├── test_highlighting.py
│   ├── test_intl.py
│   ├── test_locale.py
│   ├── test_markup.py
│   ├── test_metadata.py
│   ├── test_parser.py
│   ├── test_project.py
│   ├── test_pycode_ast.py
│   ├── test_pycode_parser.py
│   ├── test_pycode.py
│   ├── test_quickstart.py
│   ├── test_roles.py
│   ├── test_search.py
│   ├── test_smartquotes.py
│   ├── test_templating.py
│   ├── test_theming.py
│   ├── test_toctree.py
│   ├── test_transforms_move_module_targets.py
│   ├── test_transforms_post_transforms_code.py
│   ├── test_transforms_post_transforms.py
│   ├── test_transforms_reorder_nodes.py
│   ├── test_util_display.py
│   ├── test_util_docstrings.py
│   ├── test_util_docutils.py
│   ├── test_util_fileutil.py
│   ├── test_util_i18n.py
│   ├── test_util_images.py
│   ├── test_util_inspect.py
│   ├── test_util_inventory.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.py
│   ├── test_versioning.py
│   ├── test_writer_latex.py
│   ├── typing_test_data.py
│   └── utils.py
├── tox.ini
└── utils
├── __init__.py
├── babel_runner.py
├── bump_docker.py
├── bump_version.py
├── CHANGES_template
└── release-checklist
616 directories, 2687 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment