Do not escape .Content in the RSS feed templates

This commit is contained in:
Eryn Wells 2022-11-05 23:58:28 -07:00
parent af23a386cf
commit e73040bb44
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<item>
{{ partial "rss_item_metadata.rss" . }}
<description>{{ `<![CDATA[` | safeHTML }}
{{ .Content | html }}
{{ .Content }}
]]></description>
</item>

View file

@ -3,6 +3,6 @@
{{ partial "rss_item_metadata.rss" . }}
<description>{{ `<![CDATA[` | safeHTML }}
<img src="{{ $thumbnail.Permalink }}">
{{ .Content | html }}
{{ .Content }}
]]></description>
</item>