diff --git a/docs/_templates/python/material/_base/class.html b/docs/_templates/python/material/_base/class.html deleted file mode 100644 index 120fe338f1..0000000000 --- a/docs/_templates/python/material/_base/class.html +++ /dev/null @@ -1,114 +0,0 @@ -{{ log.debug("Rendering " + class.path) }} - -
{% if show_full_path %}{{ class.path }}{% else %}{{ class.name }}{% endif %}
- {% endif %}
-
- {% with labels = ['class'] %}
- {% include "labels.html" with context %}
- {% endwith %}
-
- {% endfilter %}
-
- {% if config.separate_signature and config.merge_init_into_class %}
- {% if "__init__" in class.members %}
- {% with function = class.members["__init__"] %}
- {% filter highlight(language="python", inline=False) -%}
- def {% filter format_signature(config.line_length) %}
-__init__{% include "signature.html" with context %}
- {% endfilter %}:
- {% endfilter %}
- {% endwith %}
- {% endif %}
- {% endif %}
-
- {% else %}
- {% if config.show_root_toc_entry %}
- {% filter heading(heading_level,
- role="class",
- id=html_id,
- toc_label=class.path if config.show_root_full_path else class.name,
- hidden=True) %}
- {% endfilter %}
- {% endif %}
- {% set heading_level = heading_level - 1 %}
- {% endif %}
-
-
- Bases: {% for expression in class.bases -%}
- {% include "expression.html" with context %}
{% if not loop.last %}, {% endif %}
- {% endfor -%}
-
{{ class.relative_filepath }}
{{ class.relative_filepath }}
Name | -Type | -Description | -
---|---|---|
{{ attribute.name }} |
-
- {% if attribute.annotation %}
- {% with expression = attribute.annotation %}
- {% include "expression.html" with context %}
- {% endwith %}
- {% endif %}
- |
- {{ attribute.description|convert_markdown(heading_level, html_id) }} | -
{{ section.title or "Attributes:" }}
-{% include "expression.html" with context %}
)
- {% endwith %}
- {% endif %}
- – {{ attribute.description|convert_markdown(heading_level, html_id) }}
- {{ (section.title or "ATTRIBUTE").rstrip(":").upper() }} | -DESCRIPTION | -
---|---|
{{ attribute.name }} |
-
- {{ attribute.description|convert_markdown(heading_level, html_id) }}
-
- {% if attribute.annotation %}
-
- TYPE:
- {% with expression = attribute.annotation %}
- |
-
Parameter | -Default | -Description | -
---|---|---|
- {{ parameter.name }}
- - {% if parameter.annotation %} - {% with expression = parameter.annotation %} - {% include "expression.html" with context %}
- {% endwith %}
- {% endif %}
- |
-
- {% if parameter.default %}
- {% with expression = parameter.default %}
- {% include "expression.html" with context %}
- {% endwith %}
- {% else %}
- required
- {% endif %}
- |
- {{ parameter.description|convert_markdown(heading_level, html_id) }} | -
{{ section.title or "Parameters:" }}
-{% include "expression.html" with context %}
)
- {% endwith %}
- {% endif %}
- – {{ parameter.description|convert_markdown(heading_level, html_id) }}
- {{ (section.title or "PARAMETER").rstrip(":").upper() }} | -DESCRIPTION | -
---|---|
{{ parameter.name }} |
-
- {{ parameter.description|convert_markdown(heading_level, html_id) }}
-
- {% if parameter.annotation %}
-
- TYPE:
- {% with expression = parameter.annotation %}
- |
-
Type | -Description | -
---|---|
- {% if raises.annotation %}
- {% with expression = raises.annotation %}
- {% include "expression.html" with context %}
- {% endwith %}
- {% endif %}
- |
- {{ raises.description|convert_markdown(heading_level, html_id) }} | -
{{ section.title or "Raises:" }}
-{% include "expression.html" with context %}
- {% endwith %}
- –
- {% endif %}
- {{ raises.description|convert_markdown(heading_level, html_id) }}
- {{ (section.title or "RAISES").rstrip(":").upper() }} | -DESCRIPTION | -
---|---|
-
- {% with expression = raises.annotation %}
- {% include "expression.html" with context %}
- {% endwith %}
-
- |
- - {{ raises.description|convert_markdown(heading_level, html_id) }} - | -
Name | {% endif %} -Type | -Description | -
---|---|---|
{% if returns.name %}{{ returns.name }} {% endif %} | {% endif %}
-
- {% if returns.annotation %}
- {% with expression = returns.annotation %}
- {% include "expression.html" with context %}
- {% endwith %}
- {% endif %}
- |
- {{ returns.description|convert_markdown(heading_level, html_id) }} | -
{{ section.title or "Returns:" }}
-{% include "expression.html" with context %}
- {% if returns.name %}){% endif %}
- {% endwith %}
- {% endif %}
- – {{ returns.description|convert_markdown(heading_level, html_id) }}
- {{ (section.title or "RETURNS").rstrip(":").upper() }} | -DESCRIPTION | -
---|---|
- {% if returns.name %}
- {{ returns.name }}
- {% elif returns.annotation %}
-
- {% with expression = returns.annotation %}
- {% include "expression.html" with context %}
- {% endwith %}
-
- {% endif %}
- |
-
- {{ returns.description|convert_markdown(heading_level, html_id) }}
- {% if returns.name and returns.annotation %}
-
-
- TYPE:
- {% with expression = returns.annotation %}
- |
-
{{ function.relative_filepath }}