mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-03 09:44:39 +02:00
...
This commit is contained in:
parent
d316f617e4
commit
737fc8961f
1 changed files with 3 additions and 2 deletions
|
|
@ -468,8 +468,9 @@ def mobimlize_elem(self, elem, stylizer, bstate, istates,
|
|||
vtag.append(child)
|
||||
else:
|
||||
break
|
||||
for child in vbstate.para:
|
||||
vtag.append(child)
|
||||
if vbstate.para is not None:
|
||||
for child in vbstate.para:
|
||||
vtag.append(child)
|
||||
return
|
||||
|
||||
if text or tag in CONTENT_TAGS or tag in NESTABLE_TAGS:
|
||||
|
|
|
|||
Loading…
Reference in a new issue