Fixed HTML attribute validation

This commit is contained in:
Joshua Sangmeister 2020-11-20 13:38:37 +01:00
parent bed9b3a958
commit f3809fc8a9
1 changed files with 33 additions and 5 deletions

View File

@ -43,12 +43,40 @@ allowed_tags_permissive = allowed_tags_strict + [
"video",
]
allowed_attributes = [
"align",
"alt",
"autoplay",
"background",
"bgcolor",
"border",
"class",
"colspan",
"controls",
"dir",
"height",
"hidden",
"href",
"hreflang",
"id",
"lang",
"loop",
"muted",
"poster",
"preload",
"rel",
"rowspan",
"scope",
"sizes",
"src",
"srcset",
"start",
"style",
"target",
"title",
"width",
]
def allow_all(tag: str, name: str, value: str) -> bool:
return True
allowed_attributes = allow_all
allowed_styles = [
"color",
"background-color",