From f3ffd87403a77e81e47b140694bd858d9ea8fc63 Mon Sep 17 00:00:00 2001 From: Monika <162727606+pierzchala-m@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:09:38 -0500 Subject: [PATCH 1/4] Update tip shortcode to use RenderString method Signed-off-by: Monika <162727606+pierzchala-m@users.noreply.github.com> --- themes/wc-eh-docs/layouts/shortcodes/tip.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/wc-eh-docs/layouts/shortcodes/tip.html b/themes/wc-eh-docs/layouts/shortcodes/tip.html index f2441b5bc..ae4511cd4 100644 --- a/themes/wc-eh-docs/layouts/shortcodes/tip.html +++ b/themes/wc-eh-docs/layouts/shortcodes/tip.html @@ -1,4 +1,4 @@
Tip
-
{{ .Inner | markdownify }}
+
{{ .Page.RenderString .Inner }}
From 664b3802223b2f5e7de6c6bdd33965af7ba85177 Mon Sep 17 00:00:00 2001 From: Monika <162727606+pierzchala-m@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:14:57 -0500 Subject: [PATCH 2/4] Change markdownify to RenderString in warning.html Signed-off-by: Monika <162727606+pierzchala-m@users.noreply.github.com> --- themes/wc-eh-docs/layouts/shortcodes/warning.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/wc-eh-docs/layouts/shortcodes/warning.html b/themes/wc-eh-docs/layouts/shortcodes/warning.html index 8d2d11668..ed1304a58 100644 --- a/themes/wc-eh-docs/layouts/shortcodes/warning.html +++ b/themes/wc-eh-docs/layouts/shortcodes/warning.html @@ -1,4 +1,4 @@
Warning
-
{{ .Inner | markdownify }}
+
{{ .Page.RenderString .Inner }}
From b55a1b5dc64592ed2f0297d406b5ffaa051af8d8 Mon Sep 17 00:00:00 2001 From: Monika <162727606+pierzchala-m@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:16:19 -0500 Subject: [PATCH 3/4] Update note.html Signed-off-by: Monika <162727606+pierzchala-m@users.noreply.github.com> --- themes/wc-eh-docs/layouts/shortcodes/note.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/wc-eh-docs/layouts/shortcodes/note.html b/themes/wc-eh-docs/layouts/shortcodes/note.html index 15d8eb924..20197e48e 100644 --- a/themes/wc-eh-docs/layouts/shortcodes/note.html +++ b/themes/wc-eh-docs/layouts/shortcodes/note.html @@ -1,4 +1,4 @@
Note
-
{{ .Inner | markdownify }}
+
{{ .Page.RenderString .Inner }}
From efb4ff9c597b53266effc7c1add7cda493f666e1 Mon Sep 17 00:00:00 2001 From: Monika <162727606+pierzchala-m@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:16:30 -0500 Subject: [PATCH 4/4] Change markdownify to RenderString in info.html Signed-off-by: Monika <162727606+pierzchala-m@users.noreply.github.com> --- themes/wc-eh-docs/layouts/shortcodes/info.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/wc-eh-docs/layouts/shortcodes/info.html b/themes/wc-eh-docs/layouts/shortcodes/info.html index d3d0bc818..f80dc6875 100644 --- a/themes/wc-eh-docs/layouts/shortcodes/info.html +++ b/themes/wc-eh-docs/layouts/shortcodes/info.html @@ -1,4 +1,4 @@
Info
-
{{ .Inner | markdownify }}
-
\ No newline at end of file +
{{ .Page.RenderString .Inner }}
+