From 6b46a2a5975ac8a360765f580d65b6e61915c6da Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Sun, 2 Jul 2023 18:31:51 -0400 Subject: [PATCH] identify hashtag links as hashtag --- fun.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fun.go b/fun.go index 71999a0..0af56b0 100644 --- a/fun.go +++ b/fun.go @@ -549,7 +549,7 @@ func attoreplacer(m string) string { } func ontoreplacer(h string) string { - return fmt.Sprintf(`%s`, serverName, + return fmt.Sprintf(`%s`, serverName, strings.ToLower(h[1:]), h) }