16 lines
472 B
Text
16 lines
472 B
Text
|
# {{ .Title }}
|
||
|
|
||
|
{{ .RawContent }}
|
||
|
|
||
|
{{- $content := .RawContent -}}
|
||
|
{{- $content = $content | replaceRE `\!\[(.+?)\]\((.+?)\)` "=> $2 Image: $1" }}
|
||
|
{{ $content }}
|
||
|
|
||
|
{{- range findRE `\[.+?\]\(.+?\)` $content }}
|
||
|
{{- $content = $content | replaceRE `\[(.+?)\]\((.+?)\)(.+)` "$1$3\n\n=> $2 $1 " }}
|
||
|
{{- end }}
|
||
|
|
||
|
{{ if .Next }}=> {{ .Next.RelPermalink }} ← Newer: {{ .Next.Title }}{{ end }}
|
||
|
{{ if .Prev -}}=> {{ .Prev.RelPermalink }} → Older: {{ .Prev.Title }}{{- end }}
|
||
|
|