need to close a tag for missing img
Ted Unangst tedu@tedunangst.com
Sat, 25 Jan 2020 18:08:13 -0500
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
fun.go
→
fun.go
@@ -173,7 +173,7 @@ base = "https://" + serverName
} return string(templates.Sprintf(`<img alt="%s" title="%s" src="%s/d/%s">`, alt, alt, base, d.XID)) } - return string(templates.Sprintf(`<img alt="%s" src="<a href="%s">%s<a>">`, alt, src, src)) + return string(templates.Sprintf(`<img alt="%s" src="<a href="%s">%s</a>">`, alt, src, src)) } }