all repos — honk @ ee1f51c967d2c21b8de88dcbba2eec88a7b2fa5b

my fork of honk

need to lowercase here
Ted Unangst tedu@tedunangst.com
Tue, 27 Aug 2019 22:25:02 -0400
commit

ee1f51c967d2c21b8de88dcbba2eec88a7b2fa5b

parent

461126c939183e2c99baf290c00e6613dc9b0ca7

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

jump to
M fun.gofun.go

@@ -374,7 +374,8 @@ if h[0] != '#' {

p = h[:1] h = h[1:] } - return fmt.Sprintf(`%s<a href="https://%s/o/%s">%s</a>`, p, serverName, h[1:], h) + return fmt.Sprintf(`%s<a href="https://%s/o/%s">%s</a>`, p, serverName, + strings.ToLower(h[1:]), h) }) return s }