From fc707a7b38b1b76d3bde51b873c5cfc5309911d6 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Thu, 19 Jan 2023 20:39:11 -0800 Subject: [PATCH] Remove redundant markdownify funcs --- layouts/shortcodes/paige/figure.html | 2 +- layouts/shortcodes/paige/quote.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/shortcodes/paige/figure.html b/layouts/shortcodes/paige/figure.html index af4c79b3..1f6b8915 100644 --- a/layouts/shortcodes/paige/figure.html +++ b/layouts/shortcodes/paige/figure.html @@ -1,6 +1,6 @@ {{ $align := .Get "align" }} {{ $caption := .Get 0 | default (.Get "caption") }} -{{ $content := .Inner | markdownify }} +{{ $content := .Inner }} {{ $float := .Get "float" }} {{ $height := .Get "height" }} {{ $justify := .Get "justify" }} diff --git a/layouts/shortcodes/paige/quote.html b/layouts/shortcodes/paige/quote.html index 44f39999..b5a28ed1 100644 --- a/layouts/shortcodes/paige/quote.html +++ b/layouts/shortcodes/paige/quote.html @@ -1,6 +1,6 @@ {{ $align := .Get "align" }} {{ $caption := .Get "caption" | markdownify }} -{{ $content := .Inner | markdownify }} +{{ $content := .Inner }} {{ $float := .Get "float" }} {{ $height := .Get "height" }} {{ $justify := .Get "justify" }}