the mastodon made me do it; i am blameless

This commit is contained in:
Ted Unangst 2023-01-24 17:13:49 -05:00
parent 32ed638147
commit ebf1000f1c
1 changed files with 2 additions and 0 deletions

View File

@ -515,6 +515,8 @@ var re_romalink = regexp.MustCompile(`https://[[:alnum:].]+/objects/[[:alnum:]-]
var re_qtlinks = regexp.MustCompile(`>https://[^\s<]+<`) var re_qtlinks = regexp.MustCompile(`>https://[^\s<]+<`)
func qutify(user *WhatAbout, content string) string { func qutify(user *WhatAbout, content string) string {
// well this is gross
content = strings.ReplaceAll(content, `</span><span class="ellipsis">`, "")
mlinks := re_qtlinks.FindAllString(content, -1) mlinks := re_qtlinks.FindAllString(content, -1)
for _, m := range mlinks { for _, m := range mlinks {
m = m[1 : len(m)-1] m = m[1 : len(m)-1]