From: XhmikosR Date: Wed, 20 Jan 2021 11:10:08 +0000 (+0200) Subject: example: remove unneeded escape characters X-Git-Tag: v5.1.1~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f22966c9206cd3efba174566fecd6bd68061c4ae;p=thirdparty%2Fbootstrap.git example: remove unneeded escape characters --- 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 -}}