-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Improve templates indentation
- Loading branch information
Showing
18 changed files
with
1,193 additions
and
1,194 deletions.
There are no files selected for viewing
124 changes: 62 additions & 62 deletions
124
src/mkdocstrings_handlers/python/templates/material/_base/attribute.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,80 @@ | ||
{{ log.debug("Rendering " + attribute.path) }} | ||
|
||
<div class="doc doc-object doc-attribute"> | ||
{% with obj = attribute, html_id = attribute.path %} | ||
{% with obj = attribute, html_id = attribute.path %} | ||
|
||
{% if root %} | ||
{% set show_full_path = config.show_root_full_path %} | ||
{% set root_members = True %} | ||
{% elif root_members %} | ||
{% set show_full_path = config.show_root_members_full_path or config.show_object_full_path %} | ||
{% set root_members = False %} | ||
{% else %} | ||
{% set show_full_path = config.show_object_full_path %} | ||
{% endif %} | ||
{% if root %} | ||
{% set show_full_path = config.show_root_full_path %} | ||
{% set root_members = True %} | ||
{% elif root_members %} | ||
{% set show_full_path = config.show_root_members_full_path or config.show_object_full_path %} | ||
{% set root_members = False %} | ||
{% else %} | ||
{% set show_full_path = config.show_object_full_path %} | ||
{% endif %} | ||
|
||
{% set attribute_name = attribute.path if show_full_path else attribute.name %} | ||
|
||
{% if not root or config.show_root_heading %} | ||
{% filter heading( | ||
heading_level, | ||
role="data" if attribute.parent.kind.value == "module" else "attr", | ||
id=html_id, | ||
class="doc doc-heading", | ||
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-attribute"></code> '|safe if config.show_symbol_type_toc else '') + attribute.name, | ||
) %} | ||
|
||
{% set attribute_name = attribute.path if show_full_path else attribute.name %} | ||
{% block heading scoped %} | ||
{% if config.show_symbol_type_heading %}<code class="doc-symbol doc-symbol-heading doc-symbol-attribute"></code>{% endif %} | ||
{% if config.separate_signature %} | ||
<span class="doc doc-object-name doc-attribute-name">{{ attribute_name }}</span> | ||
{% else %} | ||
{%+ filter highlight(language="python", inline=True) %} | ||
{{ attribute_name }}{% if attribute.annotation %}: {{ attribute.annotation }}{% endif %} | ||
{% if attribute.value %} = {{ attribute.value }}{% endif %} | ||
{% endfilter %} | ||
{% endif %} | ||
{% endblock heading %} | ||
|
||
{% if not root or config.show_root_heading %} | ||
{% filter heading( | ||
heading_level, | ||
role="data" if attribute.parent.kind.value == "module" else "attr", | ||
id=html_id, | ||
class="doc doc-heading", | ||
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-attribute"></code> '|safe if config.show_symbol_type_toc else '') + attribute.name, | ||
) %} | ||
{% block labels scoped %} | ||
{% with labels = attribute.labels %} | ||
{% include "labels.html" with context %} | ||
{% endwith %} | ||
{% endblock labels %} | ||
|
||
{% endfilter %} | ||
|
||
{% block heading scoped %} | ||
{% if config.show_symbol_type_heading %}<code class="doc-symbol doc-symbol-heading doc-symbol-attribute"></code>{% endif %} | ||
{% block signature scoped %} | ||
{% if config.separate_signature %} | ||
<span class="doc doc-object-name doc-attribute-name">{{ attribute_name }}</span> | ||
{% else %} | ||
{%+ filter highlight(language="python", inline=True) %} | ||
{{ attribute_name }}{% if attribute.annotation %}: {{ attribute.annotation }}{% endif %} | ||
{% if attribute.value %} = {{ attribute.value }}{% endif %} | ||
{% filter format_attribute(attribute, config.line_length, crossrefs=config.signature_crossrefs) %} | ||
{{ attribute.name }} | ||
{% endfilter %} | ||
{% endif %} | ||
{% endblock heading %} | ||
{% endblock signature %} | ||
|
||
{% block labels scoped %} | ||
{% with labels = attribute.labels %} | ||
{% include "labels.html" with context %} | ||
{% endwith %} | ||
{% endblock labels %} | ||
{% else %} | ||
|
||
{% endfilter %} | ||
|
||
{% block signature scoped %} | ||
{% if config.separate_signature %} | ||
{% filter format_attribute(attribute, config.line_length, crossrefs=config.signature_crossrefs) %} | ||
{{ attribute.name }} | ||
{% if config.show_root_toc_entry %} | ||
{% filter heading(heading_level, | ||
role="data" if attribute.parent.kind.value == "module" else "attr", | ||
id=html_id, | ||
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-attribute"></code> '|safe if config.show_symbol_type_toc else '') + attribute.name, | ||
hidden=True, | ||
) %} | ||
{% endfilter %} | ||
{% endif %} | ||
{% endblock signature %} | ||
|
||
{% else %} | ||
|
||
{% if config.show_root_toc_entry %} | ||
{% filter heading(heading_level, | ||
role="data" if attribute.parent.kind.value == "module" else "attr", | ||
id=html_id, | ||
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-attribute"></code> '|safe if config.show_symbol_type_toc else '') + attribute.name, | ||
hidden=True, | ||
) %} | ||
{% endfilter %} | ||
{% set heading_level = heading_level - 1 %} | ||
{% endif %} | ||
{% set heading_level = heading_level - 1 %} | ||
{% endif %} | ||
|
||
<div class="doc doc-contents {% if root %}first{% endif %}"> | ||
{% block contents scoped %} | ||
{% block docstring scoped %} | ||
{% with docstring_sections = attribute.docstring.parsed %} | ||
{% include "docstring.html" with context %} | ||
{% endwith %} | ||
{% endblock docstring %} | ||
{% endblock contents %} | ||
</div> | ||
<div class="doc doc-contents {% if root %}first{% endif %}"> | ||
{% block contents scoped %} | ||
{% block docstring scoped %} | ||
{% with docstring_sections = attribute.docstring.parsed %} | ||
{% include "docstring.html" with context %} | ||
{% endwith %} | ||
{% endblock docstring %} | ||
{% endblock contents %} | ||
</div> | ||
|
||
{% endwith %} | ||
{% endwith %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.