Ignore brackets in search

This commit is contained in:
Deluan 2020-05-25 11:05:30 -04:00
parent 72e92c7318
commit aaa4f1531e
2 changed files with 5 additions and 1 deletions

View file

@ -9,7 +9,7 @@ import (
"github.com/kennygrant/sanitize"
)
var quotesRegex = regexp.MustCompile("[“”‘’'\"]")
var quotesRegex = regexp.MustCompile("[“”‘’'\"\\[\\(\\{\\]\\)\\}]")
func getFullText(text ...string) string {
fullText := sanitizeStrings(text...)