{{ log.debug() }} {% if config.docstring_section_style == "table" %}

{{ section.title or "Attributes:" }}

{% for attribute in section.value %} {% endfor %}
Name Type 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) }}
{% elif config.docstring_section_style == "list" %}

{{ section.title or "Attributes:" }}

{% elif config.docstring_section_style == "spacy" %} {% for attribute in section.value %} {% endfor %}
ATTRIBUTE 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 %}

{% endif %}