Disable the error message if we get a unhandled tag for now.

This commit is contained in:
poljar (Damir Jelić) 2018-01-25 16:08:52 +01:00
parent 72221246b0
commit 704cadc5c0

View file

@ -1381,7 +1381,8 @@ class MatrixHtmlParser(HTMLParser):
self.text = ""
self.attributes["fgcolor"] = color
else:
W.prnt("", "Unhandled tag {t}".format(t=tag))
# W.prnt("", "Unhandled tag {t}".format(t=tag))
pass
def handle_endtag(self, tag):
if tag == "strong":