Fix unicode emojis display
This commit is contained in:
parent
1227dd5236
commit
08cdcd6b50
1 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@
|
|||
{% if obj | has_type(['Article', 'Page']) %}
|
||||
{{ obj.name }} <a href="{{ obj | url_or_id | get_url }}">{{ obj | url_or_id | get_url }}</a>
|
||||
{% 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 }}
|
||||
|
||||
|
||||
<ul style="list-style:none;padding:0;">
|
||||
|
@ -206,7 +206,7 @@
|
|||
|
||||
|
||||
{% else %}
|
||||
{{ 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 }}
|
||||
{% endif %}
|
||||
|
||||
{% if obj | has_place %}
|
||||
|
|
Loading…
Reference in a new issue