Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix: Fix double code tags
- Loading branch information
Showing
with
3 additions
and
3 deletions.
-
+3
−3
src/mkdocstrings/templates/python/material/attribute.html
|
|
@@ -21,10 +21,10 @@ |
|
|
class="doc doc-heading" |
|
|
data-toc-label="{{ attribute.name }}"> |
|
|
|
|
|
<code class="highlight"> |
|
|
{% filter highlight(language="python", inline=True) %} |
|
|
{% if show_full_path %}{{ attribute.path }}{% else %}{{ attribute.name }}{% endif %} |
|
|
{% if attribute.type %}: {{ attribute.type|highlight(language="python", inline=True)|safe }}{% endif %} |
|
|
</code> |
|
|
{% if attribute.type %}: {{ attribute.type }}{% endif %} |
|
|
{% endfilter %} |
|
|
|
|
|
{% with properties = attribute.properties %} |
|
|
{% include "properties.html" with context %} |
|
|
|