Handle div and span elements

This commit is contained in:
Peter J. Holzer 2019-06-18 23:14:18 +02:00
parent c9a336e58f
commit b86ae9cb3f
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ class HTMLPart(html.parser.HTMLParser):
"h2", "a", "wbr", "hr", "pre", "img", "font", "i", "br", "table", "tr",
"th", "td", "b", "select", "option", "input", "sup", "address",
"center", "p", "h1", "dl", "h3", "ul", "li", "ol", "u", "blockquote",
"h4",
"h4", "div", "span"
]
hide_tags = [ "title" ]
ignore_tags = [ "html", "head", "body", "marquee", "meta", "form", ]