File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/mkdocstrings_handlers/python/templates/material/_base Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 23
23
toc_label=class.name) %}
24
24
25
25
{% if config.separate_signature %}
26
- < code > {% if show_full_path %}{{ class.path }}{% else %}{{ class.name }}{% endif %}</ code >
26
+ {% if show_full_path %}{{ class.path }}{% else %}{{ class.name }}{% endif %}
27
27
{% elif config.merge_init_into_class and "__init__" in class.members -%}
28
28
{%- with function = class.members["__init__"] -%}
29
29
{%- filter highlight(language="python", inline=True) -%}
Original file line number Diff line number Diff line change 22
22
class="doc doc-heading",
23
23
toc_label=module.name) %}
24
24
25
- < code > {% if show_full_path %}{{ module.path }}{% else %}{{ module.name }}{% endif %}</ code >
25
+ {% if not config.separate_signature %}< code > {% endif %}
26
+ {% if show_full_path %}{{ module.path }}{% else %}{{ module.name }}{% endif %}
27
+ {% if not config.separate_signature %}</ code > {% endif %}
26
28
27
29
{% with labels = module.labels %}
28
30
{% include "labels.html" with context %}
You can’t perform that action at this time.
0 commit comments