8000 fix: Don't escape parameter default values · mkdocstrings/python@9dee4d4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9dee4d4

Browse files
committed
fix: Don't escape parameter default values
Issue-191: #191
1 parent e455022 commit 9dee4d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Context:
106106
{%- include "expression"|get_template with context -%}
107107
{%- endwith -%}
108108
{%- else -%}
109-
{{ parameter.default }}
109+
{{ parameter.default|safe }}
110110
{%- endif -%}
111111
{%- endif -%}
112112

0 commit comments

Comments
 (0)
0