Skip to content

Commit

Permalink
Do not escape <wbr> markup.
Browse files Browse the repository at this point in the history
Closes #442
  • Loading branch information
Johannes Ernst committed Dec 27, 2024
1 parent 1b11f52 commit b62a8b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
{%- for test_index, ( _, test_meta ) in enumerate(sorted(transcript.test_meta.items())) %}
<tr>
<td class="namedesc">
<span class="name">{{ permit_line_breaks_in_identifier(test_meta.name) | e }}</span>
<span class="name">{{ permit_line_breaks_in_identifier(test_meta.name) | safe }}</span>
{%- if test_meta.description %}
<span class="description">{{ test_meta.description | e }}</span>
{%- endif %}
Expand Down

0 comments on commit b62a8b4

Please sign in to comment.