From 63816ea1b0ee518965c5399eb78641f9f9d7bed0 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Fri, 14 Feb 2025 00:15:28 -0800 Subject: [PATCH] Process author and description meta content --- layouts/partials/paige/metas.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/layouts/partials/paige/metas.html b/layouts/partials/paige/metas.html index 1fccb443..cda1cc40 100644 --- a/layouts/partials/paige/metas.html +++ b/layouts/partials/paige/metas.html @@ -1,18 +1,20 @@ {{ $page := . }} +{{ $description := $page.Description | markdownify | plainify | htmlUnescape }} + {{ with partial "paige/func-authors.html" $page }} {{ $authors := slice }} {{ range . }} - {{ $authors = $authors | append .Title }} + {{ $authors = $authors | append (.Title | markdownify | plainify | htmlUnescape) }} {{ end }} {{ end }} -{{ with $page.Description }} +{{ with $description }} {{ end }}