diff options
author | mms <michal@sapka.me> | 2023-08-02 15:18:15 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2023-08-02 15:18:15 +0200 |
commit | de73259ec255d54f2f19e7543ab80de0bde00e1c (patch) | |
tree | dc521173754014397448b229a4b604173bd7fead | |
parent | 35084dd231e4647c390a01412a0a23c0ca89edea (diff) |
fix: rss
-rw-r--r-- | layouts/_default/rss.xml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml index 89fd691..a829f99 100644 --- a/layouts/_default/rss.xml +++ b/layouts/_default/rss.xml @@ -30,10 +30,9 @@ <title>{{ .Title }}</title> <link>{{ .Permalink }}</link> <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate> - <author>mms</author> + <author>webmaster@michal.sapka.me (mms)</author> <guid>{{ .Permalink }}</guid> - <description>{{ .Summary | safeHTML }}</description> -<content:encoded>{{ .Content | safeHTML }}</content:encoded> + <description>{{ .Summary | html }}</description> </item> {{ end }} </channel> |