sphinx-autoapi/autoapi/templates/go/package.rst
Ashley Whetter a4f798183c Fixed private submodules displaying when private-members turned off
Also fixed whitespace issues in templates.
2019-03-05 22:52:13 -08:00

33 lines
545 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 %}