sphinx-autoapi/autoapi/templates/go/package.rst
2015-05-30 16:28:59 -07:00

33 lines
550 B
ReStructuredText

.. go:package:: {{ obj.name }}
{{ obj.name }}
{{ "=" * obj.name|length }}
{% block toc %}
{%- if obj.children %}
{# TODO Make this work
.. toctree::
:maxdepth: 4
{% for item in obj.children|sort %}
/autoapi/{{ item.id.split('.')|join('/') }}/index
{%- endfor %}
#}
{%- endif %}
{% endblock %}
{% if obj.docstring %}
{{ obj.docstring }}
{% endif %}
{% block content %}
{%- for obj_item in obj.children|sort %}
{% macro render() %}{{ obj_item.render() }}{% endmacro %}
{{ render()|indent(0) }}
{%- endfor %}
{% endblock %}