diff --git a/theme/templates/ebook/glossary.html b/theme/templates/ebook/glossary.html index 49e3c13b3..a9776ad2e 100644 --- a/theme/templates/ebook/glossary.html +++ b/theme/templates/ebook/glossary.html @@ -5,16 +5,16 @@ {% block content %}

Glossary

- {% for item in glossary %} -
-

{{ item.name }}

-

{{ item.description }}

+ {% for item in glossary %} +
+

{{ item.name }}

+

{{ item.description|safe }}

-
- {% endfor %} +
+ {% endfor %}
{% endblock %} diff --git a/theme/templates/website/glossary.html b/theme/templates/website/glossary.html index aab4f4092..ff656cc43 100644 --- a/theme/templates/website/glossary.html +++ b/theme/templates/website/glossary.html @@ -6,7 +6,7 @@ {% for item in glossary %}

{{ item.name }}

-

{{ item.description }}

+

{{ item.description|safe }}