🐛 fix: allow quotation in page summary

Quotation marks were being escaped, as the `safe` filter was not being used.
This commit is contained in:
welpo
2024-05-30 14:12:44 +02:00
parent f5f195c90c
commit 22925caf06
3 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@
{% if post.description %}
<p>{{ post.description }}</p>
{% elif post.summary %}
<p>{{ post.summary | striptags | safe | trim_end_matches(pat=".") }}…</p>
<p>{{ post.summary | striptags | trim_end_matches(pat=".") | safe }}…</p>
{% endif %}
</div>
<a class="readmore" href={{ post.permalink }}>{{ macros_translate::translate(key="read_more", default="Read more", language_strings=language_strings) }}&nbsp;<span class="arrow"></span></a>