summaryrefslogtreecommitdiff
path: root/libmat2
diff options
context:
space:
mode:
authorjvoisin2019-02-23 20:47:26 +0100
committerjvoisin2019-02-23 20:47:26 +0100
commit524bae597209d775828bd176f6c00dd243f47c75 (patch)
tree56ea20e189d9b36968366d277ed206816c8ab16b /libmat2
parentc757a9b7ef3122ea19105ca47a323e81469da594 (diff)
<title> is also an html metadata
Diffstat (limited to 'libmat2')
-rw-r--r--libmat2/web.py2
1 files changed, 1 insertions, 1 deletions
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):
54 we're using an internal queue to track all the opening/closing tags, 54 we're using an internal queue to track all the opening/closing tags,
55 and hoping for the best. 55 and hoping for the best.
56 """ 56 """
57 tag_blacklist = {'doctitle', 'meta'} # everything is lowercase 57 tag_blacklist = {'doctitle', 'meta', 'title'} # everything is lowercase
58 def __init__(self, filename): 58 def __init__(self, filename):
59 super().__init__() 59 super().__init__()
60 self.filename = filename 60 self.filename = filename