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

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

{% with yields = section.value %} {% endwith %}
Type Description
{% if yields.annotation %} {% with expression = yields.annotation %} {% include "expression.html" with context %} {% endwith %} {% endif %} {{ yields.description|convert_markdown(heading_level, html_id) }}
{% elif config.docstring_section_style == "list" %}

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

{% elif config.docstring_section_style == "spacy" %} {% for yields in section.value %} {% endfor %}
YIELDS DESCRIPTION
{{ yields.name }} {{ yields.description|convert_markdown(heading_level, html_id) }}

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

{% endif %}