Skip to content

Commit 1150e9b

Browse files
fix: Don't escape parameter default values
Issue-191: mkdocstrings/python#191
1 parent 9bf3d8d commit 1150e9b

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)