{{ log.debug("Rendering warns section") }} {% import "language.html" as lang with context %} {% if config.docstring_section_style == "table" %} {% block table_style %}
{{ section.title or lang.t("Warns:") }}
{{ lang.t("Type") }} | {{ lang.t("Description") }} |
---|---|
{% if warns.annotation %}
{% with expression = warns.annotation %}
{% include "expression.html" with context %}
{% endwith %}
{% endif %}
|
{{ warns.description|convert_markdown(heading_level, html_id) }}
|
{{ section.title or lang.t("Warns:") }}
{% include "expression.html" with context %}
{% endwith %}
–
{% endif %}
{{ (section.title or lang.t("WARNS")).rstrip(":").upper() }} | {{ lang.t("DESCRIPTION") }} |
---|---|
{% with expression = warns.annotation %}
{% include "expression.html" with context %}
{% endwith %}
|
{{ warns.description|convert_markdown(heading_level, html_id) }}
|