Skip to content

Commit 1c6273e

Browse files
authored
fix: broken rss feed (#535)
1 parent a01d5c6 commit 1c6273e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

layouts/_default/rss.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
3434
<guid>{{ .Permalink }}</guid>
3535
{{ if eq .Site.Params.rssFullContent true }}
36-
<description>{{ .Content | safeHTML }}</description>
36+
<description>{{ .Content | html }}</description>
3737
{{ else if .Description }}
3838
<description>{{ .Description }}</description>
3939
{{ else }}
40-
<description>{{ .Summary | safeHTML }}</description>
40+
<description>{{ .Summary | html }}</description>
4141
{{ end }}
4242
</item>
4343
{{ end }}

0 commit comments

Comments
 (0)