diff options
Diffstat (limited to '')
-rw-r--r-- | config.toml | 1 | ||||
-rw-r--r-- | layouts/_default/rss.xml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/config.toml b/config.toml index c3e9b7a..88db67d 100644 --- a/config.toml +++ b/config.toml @@ -5,6 +5,7 @@ description = "The personal space of yet another sysadmin" enableRobotsTXT = true enableGitInfo = true paginate = 32 +rssLimit = 32 # Highlighting config pygmentsCodeFences = true diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml index a69b0b2..36acade 100644 --- a/layouts/_default/rss.xml +++ b/layouts/_default/rss.xml @@ -33,7 +33,7 @@ <author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author> {{end}} <guid>{{ .Permalink }}</guid> - <description>{{ .Summary | html }}</description> + <description>{{ .Content | html }}</description> </item> {{ end }} {{ end }} |