summaryrefslogtreecommitdiff
path: root/layouts/_default/single.gmi
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicksphere.ch>2022-04-30 00:00:00 +0000
committerNicholas Johnson <nick@nicksphere.ch>2022-04-30 00:00:00 +0000
commit3e570d9d8cce90b15c8f348b9f80f0accdf3446f1dab76077a0099d5494dc89c (patch)
tree8a7cfddf9d5ab5a7d047e4609245efc1b1b9f42ae603ce58e9359c8651e68faf /layouts/_default/single.gmi
parent0f3c967d08cec7d9cc6e78f6f72c86726fc7d290bf3e5698b907d179f15aee6d (diff)
Use safeHTML for Gemini templates to prevent HTML escaping
Diffstat (limited to 'layouts/_default/single.gmi')
-rw-r--r--layouts/_default/single.gmi2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/single.gmi b/layouts/_default/single.gmi
index 9681f92..9dfb215 100644
--- a/layouts/_default/single.gmi
+++ b/layouts/_default/single.gmi
@@ -3,4 +3,4 @@
{{ $content := .RawContent }}
{{- $content = $content | replaceRE `\[(.+?)\]\((.+?)\)` "=> $2 $1" }}
-{{- $content }}{{ end }}
+{{- $content | safeHTML }}{{ end }}