From 404e2c05bd74b3f5ebf48be23cb1ba5024994459 Mon Sep 17 00:00:00 2001 From: mco-system Date: Sun, 23 Apr 2023 19:15:17 +1100 Subject: [PATCH] fix: markup safe for description and biography --- src/thsf/templates/slot.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/thsf/templates/slot.html b/src/thsf/templates/slot.html index d0cdd5c..45e5fd1 100644 --- a/src/thsf/templates/slot.html +++ b/src/thsf/templates/slot.html @@ -36,7 +36,7 @@ {% if speaker.biography %}
- {{ speaker.biography }} + {{ speaker.biography | safe }}
{% endif %} @@ -57,7 +57,7 @@

{{slot.abstract}}

{% endif %} {% if slot.description %} -

{{slot.description}}

+

{{slot.description | safe }}

{% endif %}