diff --git a/core.go b/core.go index 341a804..b9b84b7 100644 --- a/core.go +++ b/core.go @@ -59,7 +59,7 @@ func Regex_api(contents string) string { re := regexp.MustCompile(data[i].Regex) if re.MatchString(contents) { for _, str := range data[i].Name { - result += str + result += str + "\n" } } }