From e86ed45e2667462593299b5d8af9d62ab88740bc Mon Sep 17 00:00:00 2001 From: Michael Manganiello Date: Wed, 19 Apr 2023 10:59:20 -0300 Subject: [PATCH] layouts: Add full content to RSS entries Adds the full content of blog posts to RSS entries, by using the `` tag. Fixes https://github.com/yuzu-emu/yuzu-emu.github.io/issues/299 Resources: * https://web.resource.org/rss/1.0/modules/content/ --- layouts/rss.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layouts/rss.xml b/layouts/rss.xml index 8df5f0f..06cf071 100644 --- a/layouts/rss.xml +++ b/layouts/rss.xml @@ -1,4 +1,4 @@ - + {{ .Title }} on {{ .Site.Title }} {{ .Permalink }} @@ -14,6 +14,7 @@ {{ .Params.Author }} {{ .Permalink }} {{ .Summary | html }} + {{ .Content | html }} {{ end }}