sphinx-autoapi/autoapi/templates/dotnet/namespace.rst

33 lines
650 B
ReStructuredText
Raw Normal View History

{{ short_name }} {{ type.title()}}
{{ "=" * short_name|length }}{{ "=" * type|length }}=
2015-04-07 20:35:50 +00:00
2015-04-08 20:21:30 +00:00
Tree:
2015-04-07 20:35:50 +00:00
{% if children %}
2015-04-07 20:35:50 +00:00
.. toctree::
2015-04-08 20:21:30 +00:00
:hidden:
{% for item in children %}
/autoapi/{{ item.type }}/{{ item.id.split('.')[-1] }} {% endfor %}
2015-04-07 20:35:50 +00:00
{% endif %}
2015-04-08 20:21:30 +00:00
Table:
{% if children %}
2015-04-08 20:21:30 +00:00
.. 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 }}`
2015-04-08 20:21:30 +00:00
- {{ render()|indent(7) }}
{% endfor %}
{% endif %}