diff options
Diffstat (limited to 'theme/templates/website/glossary.html')
-rw-r--r-- | theme/templates/website/glossary.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/website/glossary.html b/theme/templates/website/glossary.html index aab4f40..ff656cc 100644 --- a/theme/templates/website/glossary.html +++ b/theme/templates/website/glossary.html @@ -6,7 +6,7 @@ {% for item in glossary %} <section class="normal glossary" id="{{ item.id }}"> <h2><a href="#{{ item.id }}">{{ item.name }}</a></h2> - <p>{{ item.description }}</p> + <p>{{ item.description|safe }}</p> <ul class="glossary-index"> {% for file in item.files %} <li><a href="{{ basePath }}/{{ file.path|contentLink }}"><span class="level">{{ file.level }}.</span> {{ file.title }}</a></li> |