mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-10 01:10:27 +00:00
33 lines
650 B
ReStructuredText
33 lines
650 B
ReStructuredText
{{ short_name }} {{ type.title()}}
|
|
{{ "=" * short_name|length }}{{ "=" * type|length }}=
|
|
|
|
Tree:
|
|
|
|
{% if children %}
|
|
|
|
.. toctree::
|
|
:hidden:
|
|
{% for item in children %}
|
|
/autoapi/{{ item.type }}/{{ item.id.split('.')[-1] }} {% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
Table:
|
|
|
|
|
|
{% if children %}
|
|
|
|
.. list-table:: Classes
|
|
:widths: 20, 80
|
|
:header-rows: 1
|
|
|
|
* - Class
|
|
- Description
|
|
{% for item in children %} {% macro render() %}{{ item.summary }}{% endmacro %}
|
|
* - :dn:{{ item.type.lower().replace('class', 'cls').replace('interface', 'iface').replace('delegate', 'del') }}:`{{ item.id }}`
|
|
- {{ render()|indent(7) }}
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endif %} |