diff --git a/layouts/shortcodes/collapse.html b/layouts/shortcodes/collapse.html
index 1c5e96f..71d13d6 100644
--- a/layouts/shortcodes/collapse.html
+++ b/layouts/shortcodes/collapse.html
@@ -1,4 +1,4 @@
{{ .Get 0 | markdownify }}
- {{ .Inner | markdownify }}
+ {{ .Page.RenderString .Inner }}
diff --git a/layouts/shortcodes/figure-img.html b/layouts/shortcodes/figure-img.html
index 49057c8..e2aaeaf 100644
--- a/layouts/shortcodes/figure-img.html
+++ b/layouts/shortcodes/figure-img.html
@@ -1,5 +1,5 @@
diff --git a/layouts/shortcodes/image-size-control.html b/layouts/shortcodes/image-size-control.html
index 170322f..1bf374d 100644
--- a/layouts/shortcodes/image-size-control.html
+++ b/layouts/shortcodes/image-size-control.html
@@ -2,5 +2,5 @@
{{- with (.Get "width") }}max-width: {{ . }};{{ end -}}
{{- with (.Get "height") }}max-height: {{ . }};{{ end -}}
">
- {{ .Inner | markdownify }}
+ {{ .Page.RenderString .Inner }}
diff --git a/layouts/shortcodes/standout.html b/layouts/shortcodes/standout.html
index 0c982ba..0e8237a 100644
--- a/layouts/shortcodes/standout.html
+++ b/layouts/shortcodes/standout.html
@@ -1,3 +1,3 @@
- {{ .Inner | markdownify }}
+ {{ .Page.RenderString .Inner }}