{{ log.debug() }} {% if config.docstring_section_style == "table" %} {% set name_column = section.value|selectattr("name")|any %}

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

{% if name_column %}{% endif %} {% for receives in section.value %} {% if name_column %}{% endif %} {% endfor %}
NameType Description
{% if receives.name %}{{ receives.name }}{% endif %} {% if receives.annotation %} {% with expression = receives.annotation %} {% include "expression.html" with context %} {% endwith %} {% endif %} {{ receives.description|convert_markdown(heading_level, html_id) }}
{% elif config.docstring_section_style == "list" %}

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

{% elif config.docstring_section_style == "spacy" %} {% for receives in section.value %} {% endfor %}
RECEIVES DESCRIPTION
{% if receives.name %} {{ receives.name }} {% elif receives.annotation %} {% with expression = receives.annotation %} {% include "expression.html" with context %} {% endwith %} {% endif %} {{ receives.description|convert_markdown(heading_level, html_id) }} {% if receives.name and receives.annotation %}

TYPE: {% with expression = receives.annotation %} {% include "expression.html" with context %} {% endwith %}

{% endif %}
{% endif %}