From 524bae597209d775828bd176f6c00dd243f47c75 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sat, 23 Feb 2019 20:47:26 +0100 Subject: [PATCH] is also an html metadata --- libmat2/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmat2/web.py b/libmat2/web.py index a31c7ca..c11b47d 100644 --- a/libmat2/web.py +++ b/libmat2/web.py @@ -54,7 +54,7 @@ class _HTMLParser(parser.HTMLParser): we're using an internal queue to track all the opening/closing tags, and hoping for the best. """ - tag_blacklist = {'doctitle', 'meta'} # everything is lowercase + tag_blacklist = {'doctitle', 'meta', 'title'} # everything is lowercase def __init__(self, filename): super().__init__() self.filename = filename