This commit is contained in:
Kovid Goyal 2010-12-24 09:40:13 -07:00
parent d316f617e4
commit 737fc8961f

View File

@ -468,8 +468,9 @@ class MobiMLizer(object):
vtag.append(child) vtag.append(child)
else: else:
break break
for child in vbstate.para: if vbstate.para is not None:
vtag.append(child) for child in vbstate.para:
vtag.append(child)
return return
if text or tag in CONTENT_TAGS or tag in NESTABLE_TAGS: if text or tag in CONTENT_TAGS or tag in NESTABLE_TAGS: