{{ escape_html(section.title) }}
{% if length(section.members) > 0 %}
{% for member in section.members %}
| {% if existsIn(member, "signatureSpans") %}{{ render_signature_spans(member.signatureSpans) }}{% else %}{% if existsIn(member, "href") and member.href != "" %}{{ escape_html(member.signature) }}{% else %}{{ escape_html(member.signature) }}{% endif %}{% endif %} |
{{ escape_html(default(member.brief, "")) }} |
{% endfor %}
{% endif %}
{% if existsIn(section, "reimplementedMembers") %}
Reimplemented {{ escape_html(section.plural) }}
{% for member in section.reimplementedMembers %}
| {% if existsIn(member, "signatureSpans") %}{{ render_signature_spans(member.signatureSpans) }}{% else %}{% if existsIn(member, "href") and member.href != "" %}{{ escape_html(member.signature) }}{% else %}{{ escape_html(member.signature) }}{% endif %}{% endif %} |
{{ escape_html(default(member.brief, "")) }} |
{% endfor %}
{% endif %}
{% if existsIn(section, "inheritedMembers") %}
{% for inherited in section.inheritedMembers %}
{{ inherited.count }} {{ escape_html(section.plural) }} inherited from {% if inherited.href != "" %}{{ escape_html(inherited.className) }}{% else %}{{ escape_html(inherited.className) }}{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}