1
0
mirror of synced 2024-06-09 15:57:48 +02:00
This commit is contained in:
georg 2019-03-01 22:00:23 +00:00
parent cb8a016319
commit c3f097a82b
No known key found for this signature in database
GPG Key ID: 5AD75B414EA41667

View File

@ -39,7 +39,7 @@ class CSSParser(abstract.AbstractParser):
class AbstractHTMLParser(abstract.AbstractParser):
tags_blacklist = set() # type: Set[str]
# In some html/xml-based formats some tags are mandatory,
# so we're keeping them, but are discaring their content
# so we're keeping them, but are discarding their content
tags_required_blacklist = set() # type: Set[str]
def __init__(self, filename):