mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-06 09:20:27 +00:00
20 lines
399 B
ReStructuredText
20 lines
399 B
ReStructuredText
.. dn:{{ object.type }}:: {{ name }}
|
|
|
|
{% if summary %}
|
|
|
|
{% macro render() %}{{ summary }}{% endmacro %}
|
|
{{ render()|indent(4) }}
|
|
|
|
{% endif %}
|
|
|
|
{%- for param in parameters %}
|
|
:param {{ param.name }}: {{ param.desc }}
|
|
{%- if param.type %}
|
|
:type {{ param.name }}: {{ param.type }}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
|
|
.. code-block:: csharp
|
|
|
|
{{ example }}
|