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
All checks were successful
Build and Deploy Staging / build_and_deploy (pull_request) Successful in 2m25s
This commit is contained in:
parent
600f8fb054
commit
8245fa2d47
1 changed files with 1 additions and 1 deletions
|
@ -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 %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue