{% set level = level + 1 %}
{% if docstring['sections']['header'] %}
{% for content in docstring['sections']['header'] %}
{{ content['content']|pdoc|replace('\n', '
') }}
{% endfor %}
{% endif %}
{% for section, data in docstring['sections'].items() %}
{% if function and section != 'header' and section != 'returns' %}
Name | Type | Description |
---|---|---|
{{ entry['name'] }} | {% if entry['type'] %}{{ entry['type']|pdoc }}{% endif %} | {{ entry['content']|pdoc }} |
{{ entry['name'] }} {% if entry['type'] %}({{ entry['type']|pdoc }}){% endif %}