{{ log.debug("Rendering functions section") }} {% import "language.html" as lang with context %} {% if config.docstring_section_style == "table" %} {% block table_style scoped %}

{{ section.title or lang.t("Methods:") if obj.is_class else lang.t("Functions:") }}

{% for function in section.value %} {% if not function.name == "__init__" or not config.merge_init_into_class %} {% endif %} {% endfor %}
{{ lang.t("Name") }} {{ lang.t("Description") }}
{{ function.name }}
{{ function.description|convert_markdown(heading_level, html_id) }}
{% endblock table_style %} {% elif config.docstring_section_style == "list" %} {% block list_style scoped %}

{{ section.title or lang.t("Methods:") if obj.is_class else lang.t("Functions:") }}

{% endblock list_style %} {% elif config.docstring_section_style == "spacy" %} {% block spacy_style scoped %} {% for function in section.value %} {% if not function.name == "__init__" or not config.merge_init_into_class %} {% endif %} {% endfor %}
{{ (section.title or lang.t("METHOD") if obj.is_class else lang.t("FUNCTION")).rstrip(":").upper() }} {{ lang.t("DESCRIPTION") }}
{{ function.name }}
{{ function.description|convert_markdown(heading_level, html_id) }}
{% endblock spacy_style %} {% endif %}