sphinx-autoapi/autoapi/templates/python/module.rst

21 lines
313 B
ReStructuredText
Raw Normal View History

{{ obj.name }}
{{ "=" * obj.name|length }}
.. py:module:: {{ obj.name }}
{%- if obj.docstring %}
2015-04-01 00:01:41 +00:00
.. autoapi-nested-parse::
{{ obj.docstring|prepare_docstring|indent(3) }}
2015-04-01 00:01:41 +00:00
{% endif %}
{% block content %}
{%- for obj_item in obj.children %}
2015-04-01 00:01:41 +00:00
{{ obj_item.rendered|indent(0) }}
2015-04-21 05:54:32 +00:00
{%- endfor %}
{% endblock %}