diff options
-rw-r--r-- | layouts/_default/rss.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml index b17fff3..e930f68 100644 --- a/layouts/_default/rss.xml +++ b/layouts/_default/rss.xml @@ -39,12 +39,12 @@ <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate> {{ with .Site.Params.Author.email }}<author>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</author>{{end}} <guid>{{ .Permalink }}</guid> - <description><![CDATA[ - {{ if .Params.Image }} - <img src='{{ .Permalink }}{{.Params.Image}}' /> - {{ end }} - {{ $content }} - ]]></description> + <description> + {{ if .Params.Image }} + <img src="{{ .Permalink }}{{.Params.Image}}" /> + {{ end }} + {{ $content }} + </description> </item> {{ end }} </channel> |