mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Fix double escaped lyrics and comments
This commit is contained in:
parent
5e87280750
commit
f645c4769c
5 changed files with 62 additions and 13 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue