htmltextview. jump to newline if inline element started. Fixes #6880

This commit is contained in:
Denis Fomin 2011-05-17 18:57:37 +04:00
parent 426d08ae09
commit 9fc82bbffc
1 changed files with 1 additions and 1 deletions

View File

@ -794,7 +794,7 @@ class HtmlHandler(xml.sax.handler.ContentHandler):
elif name in ('a', 'img', 'body', 'html'):
pass
elif name in INLINE:
pass
self._jump_line()
else:
log.warning('Unhandled element "%s"' % name)