{{ log.debug("Rendering attributes section") }} {% import "language.html" as lang with context %} {% if config.docstring_section_style == "table" %} {% block table_style scoped %}

{{ section.title or lang.t("Attributes:") }}

{% for attribute in section.value %} {% endfor %}
{{ lang.t("Name") }} {{ lang.t("Type") }} {{ lang.t("Description") }}
{{ attribute.name }} {% if attribute.annotation %} {% with expression = attribute.annotation %} {% include "expression.html" with context %} {% endwith %} {% endif %}
{{ attribute.description|convert_markdown(heading_level, html_id) }}
{% endblock table_style %} {% elif config.docstring_section_style == "list" %} {% block list_style scoped %}

{{ section.title or lang.t("Attributes:") }}

{% endblock list_style %} {% elif config.docstring_section_style == "spacy" %} {% block spacy_style scoped %} {% for attribute in section.value %} {% endfor %}
{{ (section.title or lang.t("ATTRIBUTE")).rstrip(":").upper() }} {{ lang.t("DESCRIPTION") }}
{{ attribute.name }}
{{ attribute.description|convert_markdown(heading_level, html_id) }}

{% if attribute.annotation %} TYPE: {% with expression = attribute.annotation %} {% include "expression.html" with context %} {% endwith %} {% endif %}

{% endblock spacy_style %} {% endif %}