Add number, numbered shortcode params

This commit is contained in:
Will Faught
2023-01-19 21:46:07 -08:00
parent d718943648
commit 025935f6bd
10 changed files with 80 additions and 5 deletions

View File

@@ -6,6 +6,8 @@
{{ $justify := .Get "justify" }}
{{ $maxheight := .Get "maxheight" }}
{{ $maxwidth := .Get "maxwidth" }}
{{ $number := .Get "number" }}
{{ $numbered := .Get "numbered" }}
{{ $width := .Get "width" }}
{{ $content = printf `<blockquote class="blockquote mb-0">%v</blockquote>` $content }}
@@ -19,5 +21,7 @@
"justify" $justify
"maxheight" $maxheight
"maxwidth" $maxwidth
"number" $number
"numbered" $numbered
"width" $width
) }}