From 12f12cfec36eae10b38075287d7b1ef19ae4cf79 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Fri, 14 Feb 2025 12:20:37 -0800 Subject: [PATCH] Process schema section value --- layouts/partials/paige/schema.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/paige/schema.html b/layouts/partials/paige/schema.html index cb8d35aa..8817cfd4 100644 --- a/layouts/partials/paige/schema.html +++ b/layouts/partials/paige/schema.html @@ -26,7 +26,7 @@ {{ $modified := cond (not $page.Lastmod.IsZero) $page.Lastmod false }} {{ $published := cond (and (not $page.PublishDate.IsZero) (ne $page.Date $page.PublishDate)) $page.PublishDate false }} {{ $schema := newScratch }} - {{ $section := $page.CurrentSection.Title }} + {{ $section := $page.CurrentSection.Title | markdownify | plainify | htmlUnescape }} {{ $summary := $page.Summary | markdownify | plainify | htmlUnescape | chomp }} {{ $time := printf "PT%dM" $page.ReadingTime }} {{ $title := $page.Title | markdownify | plainify | htmlUnescape }}