diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml index 0a3a38e..13eb5a5 100644 --- a/layouts/_default/rss.xml +++ b/layouts/_default/rss.xml @@ -37,8 +37,14 @@ {{ $featured := $images.GetMatch "{*featured*,*cover*,*thumbnail*}" }} {{ with $featured }}{{ printf "%s%s%s" ""}}{{ end }} {{ end }} - {{ .Summary | html }} - + + {{ if .Site.Params.RssFullText }}{{ .Content | html }} + {{ else }} + {{ with .Description }}{{ . | html }} + {{ else }}{{ .Summary | html }} + {{ end }} + {{ end }} + {{ end }}