blob: 374746855040d2e161ea28019d509b95221a3608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/vmd/parser.py b/vmd/parser.py
index 2f4f992..df18d07 100644
--- a/vmd/parser.py
+++ b/vmd/parser.py
@@ -81,6 +81,8 @@ class TreeBuilder(HTMLParser):
self.current_element.add_child(HorizontalRule())
elif tag == 'blockquote':
self.new_element(tag, Blockquote())
+ elif tag == 'img':
+ pass
else:
self.logger.warning('Unhandled tag type \'%s\' found in %s', tag, self.current_element.tag_ancestry())
self.unknown_tag_stack.append(tag)
|