mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-06 09:20:27 +00:00
42 lines
581 B
ReStructuredText
42 lines
581 B
ReStructuredText
{{ short_name }} {{ type.title()}}
|
|
{{ "=" * (short_name|length + type|length + 1) }}
|
|
|
|
.. dn:class:: {{ name }}
|
|
|
|
Summary
|
|
-------
|
|
|
|
{{ summary }}
|
|
|
|
Inheritance Hierarchy
|
|
---------------------
|
|
|
|
{% for item in inheritance %}
|
|
* :ref:`{{ item.id }}`
|
|
{% endfor %}
|
|
|
|
Syntax
|
|
------
|
|
|
|
.. code-block:: csharp
|
|
|
|
{{ syntax }}
|
|
|
|
{% if item_map %}
|
|
|
|
{% for obj_type, obj_list in item_map.items() %}
|
|
|
|
{{ obj_type }}
|
|
{{ "-" * obj_type|length }}
|
|
|
|
{% for obj_item in obj_list %}
|
|
{% macro render() %}{{ obj_item.render() }}{% endmacro %}
|
|
{{ render()|indent(0) }}
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|