{{ log.debug() }} {% if config.docstring_section_style == "table" %}
{{ section.title or "Parameters:" }}
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 |
{{ section.title or "Parameters:" }}
{% include "expression.html" with context %}
)
{% endwith %}
{% endif %}
– {{ parameter.description|convert_markdown(heading_level, html_id) }}
PARAMETER | DESCRIPTION |
---|---|
{{ parameter.name }} |
{{ parameter.description|convert_markdown(heading_level, html_id) }}
{% if parameter.annotation %}
TYPE:
{% with expression = parameter.annotation %}
|