{{ log.debug("Rendering other parameters section") }} {% import "language.html" as lang with context %} {% if config.docstring_section_style == "table" %} {% block table_style %}
{{ section.title or lang.t("Other Parameters:") }}
| {{ lang.t("Name") }} | {{ lang.t("Type") }} | {{ lang.t("Description") }} | 
|---|---|---|
| {{ parameter.name }} | {% if parameter.annotation %}
              {% with expression = parameter.annotation %} {% include "expression.html" with context %}{% endwith %}
            {% endif %} | 
              {{ parameter.description|convert_markdown(heading_level, html_id) }}
             | 
{{ section.title or lang.t("Other Parameters:") }}
{{ parameter.name }}
        {% if parameter.annotation %}
          {% with expression = parameter.annotation %}
            ({% include "expression.html" with context %})
          {% endwith %}
        {% endif %}
        –
        | {{ (section.title or lang.t("PARAMETER")).rstrip(":").upper() }} | {{ lang.t("DESCRIPTION") }} | 
|---|---|
| {{ parameter.name }} | 
              {{ parameter.description|convert_markdown(heading_level, html_id) }}
             
              {% if parameter.annotation %}
                
                  {{ lang.t("TYPE:") }}
                  {% with expression = parameter.annotation %}
                     |