From 48846331ee874f30902ade3e14df18144c853422 Mon Sep 17 00:00:00 2001 From: "Wilson E. Husin" Date: Tue, 26 Apr 2022 16:50:17 -0700 Subject: [PATCH] Don't markdownify `.Summary` When a post defines a custom summary through `` tag, `markdownify` does not work and result in the post having empty summary. This fixes the behavior to render it properly --- layouts/_default/list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 02f69b4..cb9a6a7 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -38,7 +38,7 @@ {{ else if .Description }} {{ .Description | markdownify }} {{ else }} - {{ .Summary | markdownify }} + {{ .Summary }} {{ end }}