From b77b23c963a8b5707ffa076ef903ed5cefe83ee3 Mon Sep 17 00:00:00 2001 From: Andrew Kehrig Date: Wed, 27 Nov 2024 15:58:14 +0000 Subject: [PATCH] Markdownify author.html partial --- layouts/partials/author.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/author.html b/layouts/partials/author.html index 8f2758fa..5f345e8a 100644 --- a/layouts/partials/author.html +++ b/layouts/partials/author.html @@ -2,8 +2,8 @@ {{- $author := (.Params.author | default site.Params.author) }} {{- $author_type := (printf "%T" $author) }} {{- if (or (eq $author_type "[]string") (eq $author_type "[]interface {}")) }} -{{- (delimit $author ", " ) }} +{{- (delimit $author ", " ) | markdownify }} {{- else }} -{{- $author }} +{{- $author | markdownify }} {{- end }} {{- end -}}