From 700335aaa829cfdf5671b939dd2a23e2be06e3cb Mon Sep 17 00:00:00 2001 From: woadey Date: Sun, 14 Apr 2024 00:37:12 -0400 Subject: [PATCH] Allow Markdown in all Description params --- layouts/_default/archives.html | 2 +- layouts/_default/search.html | 2 +- layouts/_default/single.html | 2 +- layouts/_default/terms.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/layouts/_default/archives.html b/layouts/_default/archives.html index b38e39a..34afcb7 100644 --- a/layouts/_default/archives.html +++ b/layouts/_default/archives.html @@ -22,7 +22,7 @@ {{- if .Description }}
- {{ .Description }} + {{ .Description | markdownify }}
{{- end }} diff --git a/layouts/_default/search.html b/layouts/_default/search.html index bb7d436..3ff8df2 100644 --- a/layouts/_default/search.html +++ b/layouts/_default/search.html @@ -10,7 +10,7 @@ {{- if .Description }}
- {{ .Description }} + {{ .Description | markdownify }}
{{- end }} {{- if not (.Param "hideMeta") }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 19a624f..583aecf 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -16,7 +16,7 @@ {{- if .Description }}
- {{ .Description }} + {{ .Description | markdownify }}
{{- end }} {{- if not (.Param "hideMeta") }} diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html index 6fd2654..acdfe09 100644 --- a/layouts/_default/terms.html +++ b/layouts/_default/terms.html @@ -5,7 +5,7 @@

{{ .Title }}

{{- if .Description }}
- {{ .Description }} + {{ .Description | markdownify }}
{{- end }}