Skip to content

Commit

Permalink
fix: Don't escape parameter default values
Browse files Browse the repository at this point in the history
Issue-191: #191
  • Loading branch information
pawamoy committed Oct 14, 2024
1 parent e455022 commit 9dee4d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Context:
{%- include "expression"|get_template with context -%}
{%- endwith -%}
{%- else -%}
{{ parameter.default }}
{{ parameter.default|safe }}
{%- endif -%}
{%- endif -%}

Expand Down

0 comments on commit 9dee4d4

Please sign in to comment.