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

22 lines
277 B
ReStructuredText
Raw Normal View History

{{ obj.name }}
{{ "~" * obj.name|length }}
{%- if obj.docstring %}
2015-04-01 00:01:41 +00:00
.. rubric:: Summary
{{ obj.docstring }}
2015-04-01 00:01:41 +00:00
{% endif %}
2015-04-23 22:37:02 +00:00
.. py:module:: {{ obj.name }}
2015-04-01 00:01:41 +00:00
{% 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 %}