diff --git a/modules/markov.go b/modules/markov.go index 176f3ac..bcb497e 100644 --- a/modules/markov.go +++ b/modules/markov.go @@ -114,7 +114,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)