From 0f18a95937eb937fd61d8a57052a991fce7b1e90 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Thu, 19 Jan 2023 20:40:39 -0800 Subject: [PATCH] Make quote shortcode caption param the default --- layouts/shortcodes/paige/quote.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/shortcodes/paige/quote.html b/layouts/shortcodes/paige/quote.html index b5a28ed1..2b66f1c1 100644 --- a/layouts/shortcodes/paige/quote.html +++ b/layouts/shortcodes/paige/quote.html @@ -1,5 +1,5 @@ {{ $align := .Get "align" }} -{{ $caption := .Get "caption" | markdownify }} +{{ $caption := .Get 0 | default (.Get "caption") }} {{ $content := .Inner }} {{ $float := .Get "float" }} {{ $height := .Get "height" }}