diff options
author | 2021-07-08 14:57:37 +0200 | |
---|---|---|
committer | 2021-07-08 14:57:37 +0200 | |
commit | fd0714cfde544297a5b283605777a5ebc2e1e0f9 (patch) | |
tree | b13c708db5c33ac1a846ee9947f2668814011024 /web | |
parent | Auth flow fixes (#82) (diff) | |
download | gotosocial-fd0714cfde544297a5b283605777a5ebc2e1e0f9.tar.xz |
disable html escaping for short description (#84)
Diffstat (limited to 'web')
-rw-r--r-- | web/template/index.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/index.tmpl b/web/template/index.tmpl index ba48e92ec..4fb9dd146 100644 --- a/web/template/index.tmpl +++ b/web/template/index.tmpl @@ -9,7 +9,7 @@ <h3>This is the default landing page, you can edit it from <span class="accent">./web/template/index.tmpl</span></h1> <p> - {{.instance.ShortDescription}} + {{.instance.ShortDescription | noescape}} </p> </section> |