From 05f1198dfbe8d4c1d5e0c8f12629c4f99a307df3 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Wed, 24 Jul 2024 22:36:18 +0200 Subject: [PATCH 1/2] Add: figure caption shortcode --- layouts/shortcodes/figcaption.html | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 layouts/shortcodes/figcaption.html diff --git a/layouts/shortcodes/figcaption.html b/layouts/shortcodes/figcaption.html new file mode 100644 index 0000000..28ba000 --- /dev/null +++ b/layouts/shortcodes/figcaption.html @@ -0,0 +1,3 @@ +
+ {{ .Inner | markdownify }} +
\ No newline at end of file From 2c47cd338caf1f807f7c5e831009bd8d0a68d55b Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Wed, 24 Jul 2024 22:37:23 +0200 Subject: [PATCH 2/2] Fix: set ::-moz-selection to font bold to --- assets/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/css/style.css b/assets/css/style.css index 005c99f..aab18dc 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -100,6 +100,7 @@ pre { ::-moz-selection { /* Firefox Code */ color: #57cbcc; + font-weight: bold; background: #750cf2; }