last char of mention should not include punctuation

master
Ted Unangst 5 years ago
parent 56b06f1a02
commit 45a091ac6f

@ -135,7 +135,7 @@ type Mention struct {
where string where string
} }
var re_mentions = regexp.MustCompile(`@[[:alnum:]._-]+@[[:alnum:].-]+`) var re_mentions = regexp.MustCompile(`@[[:alnum:]._-]+@[[:alnum:].-]*[[:alnum:]]`)
var re_urltions = regexp.MustCompile(`@https://\S+`) var re_urltions = regexp.MustCompile(`@https://\S+`)
func grapevine(s string) []string { func grapevine(s string) []string {

Loading…
Cancel
Save