fix: markup safe for description and biography

This commit is contained in:
mco-system 2023-04-23 19:15:17 +11:00
parent f94bd81da7
commit 404e2c05bd
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
{% if speaker.biography %}
<div class="speaker_biography">
<div class="speaker_biography">
{{ speaker.biography }}
{{ speaker.biography | safe }}
</div>
</div>
{% endif %}
@ -57,7 +57,7 @@
<p>{{slot.abstract}}</p>
{% endif %}
{% if slot.description %}
<p>{{slot.description}}</p>
<p>{{slot.description | safe }}</p>
{% endif %}
</div>
</div>