From 1ee4c77a5eb760573459b48121bd74ec1a123f93 Mon Sep 17 00:00:00 2001 From: Frank Villaro-Dixon Date: Thu, 10 Oct 2024 13:57:36 +0200 Subject: [PATCH] single view: markdownify summary The summary is not markdownified, and thus we see the md content on the summary. This fixes that --- layouts/_default/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 000977a..308ee5b 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -14,7 +14,7 @@

{{ .Title }}

{{ with .Param "summary" }} -

{{ . }}

+

{{ . | markdownify }}

{{ end }} {{/* Reading Time */}} @@ -96,4 +96,4 @@ -{{ end }} \ No newline at end of file +{{ end }}