summaryrefslogtreecommitdiffstats
path: root/office/vmd/vmd.img.patch
diff options
context:
space:
mode:
Diffstat (limited to 'office/vmd/vmd.img.patch')
-rw-r--r--office/vmd/vmd.img.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/office/vmd/vmd.img.patch b/office/vmd/vmd.img.patch
new file mode 100644
index 0000000000..3747468550
--- /dev/null
+++ b/office/vmd/vmd.img.patch
@@ -0,0 +1,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)