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

{{ section.title or "Other Parameters:" }}

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

{{ section.title or "Other Parameters:" }}

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

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

{% endif %}