10 lines
494 B
Gemtext
10 lines
494 B
Gemtext
# {{ .Title }}
|
|
{{ $content := .RawContent -}}
|
|
{{ $content = $content | replaceRE `<!--more-->\n+` "" -}}
|
|
{{ $content = $content | replaceRE `\[([^\]]+)\]\[(\d+)\]` "$1[$2]" -}}
|
|
{{ $content = $content | replaceRE `(?m)^\[(\d+)\]: (.*)$` "=> $2 [$1] $2" -}}
|
|
{{ $content = $content | replaceRE `(?m)\n\n >` "\n\n" -}}
|
|
{{ $content = $content | replaceRE `(?m)\n\n ([^>])` " $1" -}}
|
|
{{ $content = $content | replaceRE `<audio controls src="([^"]+)"><\/audio>` "=> $1" }}
|
|
{{ $content | safeHTML }}
|