aboutsummaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-11-16 10:47:40 -0500
committertdro <tdro@noreply.example.com>2022-11-16 10:47:40 -0500
commitd294ffed41f7e64102fc631548ec8b3f6ef1c7c5 (patch)
treef4dccccc17e6d07046f3fb0299ba5d6d4b8a03a0 /themes
parentdb3820c0c5d84226e01d6f1dcef10929979935ba (diff)
downloadcanory-d294ffed41f7e64102fc631548ec8b3f6ef1c7c5.tar.gz
canory-d294ffed41f7e64102fc631548ec8b3f6ef1c7c5.tar.bz2
canory-d294ffed41f7e64102fc631548ec8b3f6ef1c7c5.zip
themes/default/layouts/partials/function-content: Make block quotes easier to write
Remove footer since it's no longer needed
Diffstat (limited to 'themes')
-rw-r--r--themes/default/layouts/partials/function-content.html19
-rw-r--r--themes/default/layouts/shortcodes/footer.html7
-rw-r--r--themes/default/layouts/shortcodes/version.html2
3 files changed, 20 insertions, 8 deletions
diff --git a/themes/default/layouts/partials/function-content.html b/themes/default/layouts/partials/function-content.html
index de68946..bc90549 100644
--- a/themes/default/layouts/partials/function-content.html
+++ b/themes/default/layouts/partials/function-content.html
@@ -10,6 +10,25 @@
replaceRE "</figure></p>" "</figure>" |
-}}
+{{- $blockquoteFooterEnDash := delimit (findRE `</blockquote>\n<p>&ndash;.*</p>` .Content 1) "" -}}
+{{- $blockquoteFooterEmDash := delimit (findRE `</blockquote>\n<p>&mdash;.*</p>` .Content 1) "" -}}
+
+{{- $blockquoteFooterFixedEnDash := $blockquoteFooterEnDash |
+ replaceRE "</blockquote>\n<p>" "<footer><cite>" |
+ replaceRE "</p>" "</cite></footer></blockquote>" |
+-}}
+
+{{- $blockquoteFooterFixedEmDash := $blockquoteFooterEmDash |
+ replaceRE "</blockquote>\n<p>" "<footer><cite>" |
+ replaceRE "</p>" "</cite></footer></blockquote>" |
+-}}
+
+{{-
+ $content = $content |
+ replaceRE $blockquoteFooterEnDash $blockquoteFooterFixedEnDash |
+ replaceRE $blockquoteFooterEmDash $blockquoteFooterFixedEmDash |
+-}}
+
{{- if $empty -}}
{{- $content = "This message contains no content." -}}
{{- end -}}
diff --git a/themes/default/layouts/shortcodes/footer.html b/themes/default/layouts/shortcodes/footer.html
deleted file mode 100644
index 579913d..0000000
--- a/themes/default/layouts/shortcodes/footer.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{{- $text := default "Block Quote" (.Get "text" | default (.Get 0)) -}}
-
-{{- if gt (len .Inner) 1 -}}
- {{ $text = .Inner }}
-{{- end -}}
-
-<span>{{ $text | markdownify }}</span>
diff --git a/themes/default/layouts/shortcodes/version.html b/themes/default/layouts/shortcodes/version.html
index 10e29c5..c34a53d 100644
--- a/themes/default/layouts/shortcodes/version.html
+++ b/themes/default/layouts/shortcodes/version.html
@@ -1,4 +1,4 @@
-{{- $version := "0.11.5" -}}
+{{- $version := "0.11.6" -}}
{{- $number := default false (.Get "number" | default (.Get 0)) -}}
{{- $clone := default false (.Get "clone" | default (.Get 1)) -}}