From f22966c9206cd3efba174566fecd6bd68061c4ae Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 20 Jan 2021 13:10:08 +0200 Subject: [PATCH] example: remove unneeded escape characters --- site/layouts/shortcodes/example.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/layouts/shortcodes/example.html b/site/layouts/shortcodes/example.html index 65cd5a9f33..0592adc6b5 100644 --- a/site/layouts/shortcodes/example.html +++ b/site/layouts/shortcodes/example.html @@ -22,7 +22,7 @@ {{- end -}} {{- if eq $show_markup true -}} - {{- $content := replaceRE `\n` `...` $input -}} + {{- $content := replaceRE `\n` `...` $input -}} {{- $content = replaceRE ` (class=" *?")` "" $content -}} {{- highlight (trim $content "\n") $lang "" -}} {{- end -}}