docs/source/_templates/autosummary/module.rst
{{ name | escape | underline }}
.. currentmodule:: {{ fullname }}
.. automodule:: {{ fullname }}
{# SEE manim.utils.docbuild.autoaliasattr_directive #} {# FOR INFORMATION ABOUT THE CUSTOM autoaliasattr DIRECTIVE! #} .. autoaliasattr:: {{ fullname }}
{% block classes %} {% if classes %} .. rubric:: Classes
.. autosummary:: :toctree: . :nosignatures: {% for class in classes %} {{ class }} {% endfor %} {% endif %} {% endblock %}
{% block functions %} {% if functions %} .. rubric:: {{ _('Functions') }}
{% for item in functions %} .. autofunction:: {{ item }} {%- endfor %} {% endif %} {% endblock %}
{% block exceptions %} {% if exceptions %} .. rubric:: {{ _('Exceptions') }}
.. autosummary:: {% for item in exceptions %} {{ item }} {%- endfor %} {% endif %} {% endblock %}
{% block modules %} {% if modules %} .. rubric:: Modules
.. autosummary:: :toctree: :recursive: {% for item in modules %} {{ item }} {%- endfor %} {% endif %} {% endblock %}