More small dotnet cleanup

pull/11/head
Eric Holscher 9 years ago
parent 463816673d
commit 4e9f1c02ea

@ -9,6 +9,7 @@
:local:
{% block summary %}
{%- if obj.summary %}
Summary
@ -16,7 +17,8 @@ Summary
{{ obj.summary }}
{%- endif %}
{%- endif %}
{% endblock %}
{% block inheritance %}

@ -2,8 +2,7 @@
{% if obj.summary %}
{% macro render() %}{{ summary }}{% endmacro %}
{{ render()|indent(4) }}
{{ obj.summary|indent(4) }}
{% endif %}
@ -13,8 +12,11 @@
:type {{ param.name }}: {{ param.type }}
{%- endif %}
{%- endfor %}
{%- if obj.returns %}
:rtype: {{ obj.returns.id }}
{%- if obj.returns.type %}
:rtype: {{ obj.returns.type }}
{%- endif %}
{%- if obj.returns.description %}
:return: {{ obj.returns.description }}
{%- endif %}
{% if obj.example %}

@ -17,7 +17,7 @@
{% if item.type != 'namespace' %}
/autoapi/{{ item.name.split('.')|join('/') }}/index
{% endif %}
{%- endfor %}
{% endfor %}
{% endif %}

Loading…
Cancel
Save