diff --git a/layouts/shortcodes/note.html b/layouts/shortcodes/note.html index 181b841f..2e38616e 100644 --- a/layouts/shortcodes/note.html +++ b/layouts/shortcodes/note.html @@ -1,4 +1,4 @@
- {{ .Get 0 | default "Note" }}
+ {{ .Get 0 | default "Note" | markdownify }}
{{ .Inner | markdownify }}
diff --git a/layouts/shortcodes/warning.html b/layouts/shortcodes/warning.html index 3a6911fe..dc30e3b3 100644 --- a/layouts/shortcodes/warning.html +++ b/layouts/shortcodes/warning.html @@ -1,4 +1,4 @@
- {{ .Get 0 | default "Warning" }}
+ {{ .Get 0 | default "Warning" | markdownify }}
{{ .Inner | markdownify }}