From bbe76a44bbe4fe00fc2944227a52637e8ff5abbd Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Wed, 30 Jul 2025 00:00:20 -0500 Subject: [PATCH] Allow backticks in figure inline caption using \bt Workaround for multline strings bounded with backtick not supporting any way to escape one to type it inside the string. --- layouts/_shortcodes/figure.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/_shortcodes/figure.html b/layouts/_shortcodes/figure.html index 3b4788b..96ab584 100644 --- a/layouts/_shortcodes/figure.html +++ b/layouts/_shortcodes/figure.html @@ -12,6 +12,6 @@ {{ end }} {{ with or (.Get "caption") (.Get 0) $resource_title }} -
{{ . | markdownify }}
+
{{ (replace . "\\bt" "`") | markdownify }}
{{ end }}