all repos — honk @ 29cac13eef1d2cde84ee732610c8bda11fac33aa

my fork of honk

need to close a tag for missing img
Ted Unangst tedu@tedunangst.com
Sat, 25 Jan 2020 18:08:13 -0500
commit

29cac13eef1d2cde84ee732610c8bda11fac33aa

parent

d3c5772947da3902be9a871eeb860f209734b47d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M fun.gofun.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(`&lt;img alt="%s" src="<a href="%s">%s<a>"&gt;`, alt, src, src)) + return string(templates.Sprintf(`&lt;img alt="%s" src="<a href="%s">%s</a>"&gt;`, alt, src, src)) } }