sphinx-autoapi/autoapi/templates/python/class.rst
2015-04-23 15:37:02 -07:00

21 lines
373 B
ReStructuredText

.. py:class:: {{ obj.name }}{% if obj.args %}({{ obj.args|join(',') }}){% endif %}
{% if obj.docstring %}
.. rubric:: Summary
{{ obj.docstring|indent(3) }}
{% endif %}
{% if obj.methods %}
{% for method in obj.methods %}
{% macro render() %}{{ method.render() }}{% endmacro %}
{{ render()|indent(3) }}
{%- endfor %}
{% endif %}