epythet.templates¶
Text templates for the generated docsrc files.
Only two files are generated: the conf.py shim and the index.md landing
page. Everything else (the API tree, the agent twins) is produced by Sphinx
extensions at build time. The about-this-build page’s template lives with its
data in epythet.provenance.
Module Attributes
Marker line present in every conf.py epythet generated (v2), used to decide whether an existing file may be overwritten. |
|
The old (0.1.x) template's signature line, also safe to overwrite. |
|
Marker in the generated index.md, used to decide whether to overwrite it. |
|
Footer of the landing page pointing at the single-document twins. |
|
What 0.1.x wrote to docsrc/.gitignore; safe to replace. |
|
autosummary's stock |
|
First line of the generated docsrc/.gitignore; a file starting with it is epythet's own: an exact earlier version is replaced, an edited one is appended to ( |
|
Earlier generated versions, replaced wholesale when found verbatim. |
- epythet.templates.CONF_SHIM_MARKER = 'from epythet.sphinx_conf import *'¶
Marker line present in every conf.py epythet generated (v2), used to decide whether an existing file may be overwritten.
- epythet.templates.DOCSRC_GITIGNORE_HEADER = '# Generated by epythet at build time'¶
First line of the generated docsrc/.gitignore; a file starting with it is epythet’s own: an exact earlier version is replaced, an edited one is appended to (
epythet.scaffold.refresh_docsrc_gitignore()).
- epythet.templates.INDEX_MARKER = '<!-- generated by epythet -->'¶
Marker in the generated index.md, used to decide whether to overwrite it.
- epythet.templates.LEGACY_CONF_MARKER = 'from epythet.config_parser import parse_config'¶
The old (0.1.x) template’s signature line, also safe to overwrite.
- epythet.templates.LEGACY_DOCSRC_GITIGNORES = ('_build/', '_build')¶
What 0.1.x wrote to docsrc/.gitignore; safe to replace.
- epythet.templates.PREVIOUS_DOCSRC_GITIGNORES = ('# Generated by epythet at build time\n_build/\napi/\n_autosummary/\n_templates/\n_static/epythet.css\n',)¶
Earlier generated versions, replaced wholesale when found verbatim.
- epythet.templates.aggregates_block = '<p class="epythet-aggregates">This documentation as a single file: {links}.</p>\n'¶
Footer of the landing page pointing at the single-document twins. Raw HTML, because MyST would read a relative
.mdlink as a (missing) page reference.
- epythet.templates.autosummary_module_rst = '{{{{ fullname | escape | underline}}}}\n\n.. automodule:: {{{{ fullname }}}}\n\n {{% block attributes %}}\n {{%- if attributes %}}\n .. rubric:: {{{{ _(\'Module Attributes\') }}}}\n\n .. autosummary::\n {{% for item in attributes %}}\n {{{{ item }}}}\n {{%- endfor %}}\n {{% endif %}}\n {{%- endblock %}}\n\n {{%- block functions %}}\n {{%- if functions %}}\n .. rubric:: {{{{ _(\'Functions\') }}}}\n\n .. autosummary::\n {{% for item in functions %}}\n {{{{ item }}}}\n {{%- endfor %}}\n {{% endif %}}\n {{%- endblock %}}\n\n {{%- block classes %}}\n {{%- if classes %}}\n .. rubric:: {{{{ _(\'Classes\') }}}}\n\n .. autosummary::\n {{% for item in classes %}}\n {{{{ item }}}}\n {{%- endfor %}}\n {{% endif %}}\n {{%- endblock %}}\n\n {{%- block exceptions %}}\n {{%- if exceptions %}}\n .. rubric:: {{{{ _(\'Exceptions\') }}}}\n\n .. autosummary::\n {{% for item in exceptions %}}\n {{{{ item }}}}\n {{%- endfor %}}\n {{% endif %}}\n {{%- endblock %}}\n\n{{%- block modules %}}\n{{%- set ignored = {ignored_fragments} %}}\n{{%- set ns = namespace(kept=[]) %}}\n{{%- for item in all_modules %}}\n{{%- if (item in modules or not item.startswith(\'_\')) and not (ignored | select("in", \'.\' ~ item ~ \'.\') | list) %}}\n{{%- set ns.kept = ns.kept + [item] %}}\n{{%- endif %}}\n{{%- endfor %}}\n{{%- if ns.kept %}}\n.. rubric:: Modules\n\n.. autosummary::\n :toctree:\n :recursive:\n{{% for item in ns.kept %}}\n {{{{ item }}}}\n{{%- endfor %}}\n{{% endif %}}\n{{%- endblock %}}\n'¶
autosummary’s stock
module.rst(Sphinx 9) with two changes to themodulesblock: (1) the recursion runs overall_modules(every submodule, minus_-prefixed ones unless__all__names them) rather thanmodules, because withautosummary_ignore_module_all = Falsea package whose__init__declares an__all__of objects would otherwise get no submodule pages at all (a third of the fleet declares one); (2) submodules matching the ignore fragments are left out of the recursion, so no stub is generated (and no second import attempted) for tests/, scrap/, examples/.