From 08cdcd6b50fda26e6b58f342bf523e28a11fd341 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sat, 2 Nov 2019 09:52:04 +0100 Subject: [PATCH] Fix unicode emojis display --- templates/utils.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/utils.html b/templates/utils.html index 928466a..fce8184 100644 --- a/templates/utils.html +++ b/templates/utils.html @@ -137,7 +137,7 @@ {% if obj | has_type(['Article', 'Page']) %} {{ obj.name }} {{ obj | url_or_id | get_url }} {% elif obj | has_type('Question') %} - {{ obj.content | clean | update_inline_imgs | replace_custom_emojis(obj) | code_highlight | safe }} + {{ obj.content | update_inline_imgs | clean | replace_custom_emojis(obj) | code_highlight | safe }}