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

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

{% with receives = section.value %} {% endwith %}
Type Description
{% 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 receive in section.value %} {% endfor %}
RECEIVES DESCRIPTION
{{ receive.name }} {{ receive.description|convert_markdown(heading_level, html_id) }}

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

{% endif %}