From 69ccff4e132b8a8e9144e934cbf9cd63cad53b44 Mon Sep 17 00:00:00 2001 From: Andrew King Date: Sat, 10 Feb 2018 12:27:54 +1100 Subject: [PATCH] Unescape HTML in post summary --- layouts/partials/post-list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/post-list.html b/layouts/partials/post-list.html index 630edf1..cbe6d04 100644 --- a/layouts/partials/post-list.html +++ b/layouts/partials/post-list.html @@ -10,7 +10,7 @@ {{ if .Site.Params.useDescriptionReplaceSummary }}

{{ .Description | plainify }}

{{ else }} -

{{ .Summary | plainify }}

+

{{ .Summary | plainify | htmlUnescape }}

{{ end }} {{ end }}