mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Merge from trunk
This commit is contained in:
commit
38df168f93
@ -143,7 +143,7 @@ auto_connect_to_folder = ''
|
||||
# documentation, 'Darkover' is called the value and 'My Series' is called the
|
||||
# category. If two books have fields that generate the same collection name,
|
||||
# then both books will be in that collection.
|
||||
# This set of tweaks tweak lets you specify for a standard or custom field how
|
||||
# This set of tweaks lets you specify for a standard or custom field how
|
||||
# the collections are to be named. You can use it to add a description to a
|
||||
# standard field, for example 'Foo (Tag)' instead of the 'Foo'. You can also use
|
||||
# it to force multiple fields to end up in the same collection. For example, you
|
||||
|
@ -468,8 +468,9 @@ class MobiMLizer(object):
|
||||
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…
x
Reference in New Issue
Block a user