From 5104a6f57d9e5a61f7ac7c9f1a5b8b2635d977c0 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Fri, 19 Nov 2021 22:54:06 -0600 Subject: [PATCH] Process markdown on breadcrumb nav --- layouts/partials/breadcrumb.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/breadcrumb.html b/layouts/partials/breadcrumb.html index bc36a3e..b6d0d8f 100644 --- a/layouts/partials/breadcrumb.html +++ b/layouts/partials/breadcrumb.html @@ -11,9 +11,9 @@ {{ end }} {{ if eq .p1 .p2 }} - {{ .p1.Title }} + {{ .p1.Title | markdownify }} {{ else }} - {{ .p1.Title }} + {{ .p1.Title | markdownify }} {{ end }} {{ end }}