chore: fix escapes

This commit is contained in:
Cory Dransfeldt 2023-09-20 08:41:37 -07:00
parent dae3a89780
commit e4d3009596
No known key found for this signature in database

View file

@ -19,7 +19,7 @@
<link>{{ entry.url | stripUtm | encodeAmp }}</link> <link>{{ entry.url | stripUtm | encodeAmp }}</link>
<pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate> <pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate>
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid> <guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
<description>{{ entry.excerpt | markdown }}</description> <description>{{ entry.excerpt | markdown | escape }}</description>
</item> </item>
{%- endfor %} {%- endfor %}
</channel> </channel>