diff --git a/modules/markov.go b/modules/markov.go index 872b803..4881e6b 100644 --- a/modules/markov.go +++ b/modules/markov.go @@ -133,7 +133,7 @@ func markovParseText(text string) string { text = strings.Replace(text, "<", "<", -1) text = strings.Replace(text, ">", ">", -1) text = strings.Replace(text, "&", "&", -1) - text = strings.Replace(text, ",", " ", -1) + //text = strings.Replace(text, ",", " ", -1) //reg := regexp.MustCompile("[^a-zA-Z0-9 ]+") //delText := reg.ReplaceAllString(text, "") return strings.ToLower(text)