handle real links in odt (#5861)

This commit is contained in:
Frédéric Péters 2014-11-04 14:35:04 +01:00
parent 4d812d6990
commit 9531583e6a
1 changed files with 2 additions and 0 deletions

View File

@ -291,6 +291,8 @@ def fill_inline(para, elem, invert_bg=False):
# another situation that happens with some copy/pasting from
# Microsoft Word
fill_inline(para, child)
elif len(child.getchildren()):
fill_inline(para, child)
else:
handle_little_span(para, child, False)