allow del tag in html
This commit is contained in:
parent
6428150107
commit
eb6678e523
3
html.go
3
html.go
|
@ -30,7 +30,8 @@ import (
|
|||
|
||||
var permittedtags = []string{"div", "h1", "h2", "h3", "h4", "h5", "h6",
|
||||
"table", "thead", "tbody", "th", "tr", "td",
|
||||
"p", "br", "pre", "code", "blockquote", "strong", "em", "b", "i", "s", "sup",
|
||||
"p", "br", "pre", "code", "blockquote",
|
||||
"strong", "em", "b", "i", "s", "sup", "del",
|
||||
"ol", "ul", "li"}
|
||||
var permittedattr = []string{"colspan", "rowspan"}
|
||||
var bannedtags = []string{"script", "style"}
|
||||
|
|
Loading…
Reference in New Issue