[fix] improve custom emoji validation (#1772)
This commit is contained in:
parent
165771ea8e
commit
9983ef2794
@ -125,8 +125,9 @@ func RenderMarkdown(raw string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
_sanitizeReSrcMatch = regexp.MustCompile(`(?i)^/img/emoji`)
|
_sanitizeReSrcMatch = regexp.MustCompile(`(?i)^/img/emoji/[^\.%]*.[A-Z]*$`)
|
||||||
_sanitizeReAltTitleMatch = regexp.MustCompile(`:\S+:`)
|
_sanitizeReAltTitleMatch = regexp.MustCompile(`:\S+:`)
|
||||||
|
_sanitizeReClassMatch = regexp.MustCompile(`(?i)^(emoji)[A-Z_]*?$`)
|
||||||
)
|
)
|
||||||
|
|
||||||
func sanitize(raw string) string {
|
func sanitize(raw string) string {
|
||||||
@ -153,7 +154,7 @@ func sanitize(raw string) string {
|
|||||||
// Allow img tags from the the local emoji directory only
|
// Allow img tags from the the local emoji directory only
|
||||||
p.AllowAttrs("src").Matching(_sanitizeReSrcMatch).OnElements("img")
|
p.AllowAttrs("src").Matching(_sanitizeReSrcMatch).OnElements("img")
|
||||||
p.AllowAttrs("alt", "title").Matching(_sanitizeReAltTitleMatch).OnElements("img")
|
p.AllowAttrs("alt", "title").Matching(_sanitizeReAltTitleMatch).OnElements("img")
|
||||||
p.AllowAttrs("class").OnElements("img")
|
p.AllowAttrs("class").Matching(_sanitizeReClassMatch).OnElements("img")
|
||||||
|
|
||||||
// Allow bold
|
// Allow bold
|
||||||
p.AllowElements("strong")
|
p.AllowElements("strong")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user