fix: use safe filter instead of escape for content
All checks were successful
Build and Deploy Staging / build_and_deploy (pull_request) Successful in 2m25s

This commit is contained in:
Devin Haska 2025-04-15 22:13:17 -07:00
parent 600f8fb054
commit 8245fa2d47

View file

@ -18,7 +18,7 @@
<category>{{ tag }}</category> <category>{{ tag }}</category>
{% endfor %} {% endfor %}
{% if item.content %} {% if item.content %}
<description><![CDATA[{{ item.content | convertRelativeLinks(meta.url) | escape }}]]></description> <description><![CDATA[{{ item.content | convertRelativeLinks(meta.url) | safe }}]]></description>
{% elseif item.data.excerpt %} {% elseif item.data.excerpt %}
<description><![CDATA[{{ item.excerpt }}]]></description> <description><![CDATA[{{ item.excerpt }}]]></description>
{% endif %} {% endif %}