diff --git a/layouts/_default/single.gmi b/layouts/_default/single.gmi index a0d6a25a..333b7bf7 100644 --- a/layouts/_default/single.gmi +++ b/layouts/_default/single.gmi @@ -1,9 +1,5 @@ # {{ .Title }}{{ $scratch := newScratch }} {{ $content := .RawContent -}} -{{ $content := $content | replaceRE "`(.+?)`" "$1" -}} -{{ $content := $content | replaceRE "`" "```" -}} -{{ $content := $content | replaceRE `\*\*(.+?)\*\*` "$1" -}} -{{ $content := $content | replaceRE `_(.+?)_` "$1" -}} {{ $content := $content | replaceRE `#### ` "### " -}} {{ $content := $content | replaceRE `\n- (.+?)` "\n* $1" -}} {{ $content := $content | replaceRE `\n(\d+). (.+?)` "\n* $2" -}}