Fix double escaped lyrics and comments

This commit is contained in:
Deluan 2021-10-26 19:33:21 -04:00
parent 5e87280750
commit f645c4769c
5 changed files with 62 additions and 13 deletions

View file

@ -1,11 +1,13 @@
package utils
import (
"html"
"regexp"
"sort"
"strings"
"github.com/kennygrant/sanitize"
"github.com/microcosm-cc/bluemonday"
)
var quotesRegex = regexp.MustCompile("[“”‘’'\"\\[\\(\\{\\]\\)\\}]")
@ -29,3 +31,10 @@ func SanitizeStrings(text ...string) string {
sort.Strings(fullText)
return strings.Join(fullText, " ")
}
var policy = bluemonday.UGCPolicy()
func SanitizeText(text string) string {
s := policy.Sanitize(text)
return html.UnescapeString(s)
}