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

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

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

{{ section.title or "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 %} {% if parameter.default %} DEFAULT: {% with expression = parameter.default %} {% include "expression.html" with context %} {% endwith %} {% endif %}

{% endif %}