This commit is contained in:
Kovid Goyal 2011-09-13 09:47:47 -06:00
parent 41792efac3
commit dbb2ede515

View File

@ -394,8 +394,9 @@ OptionRecommendation(name='insert_blank_line_size',
OptionRecommendation(name='remove_first_image', OptionRecommendation(name='remove_first_image',
recommended_value=False, level=OptionRecommendation.LOW, recommended_value=False, level=OptionRecommendation.LOW,
help=_('Remove the first image from the input ebook. Useful if the ' help=_('Remove the first image from the input ebook. Useful if the '
'first image in the source file is a cover and you are specifying ' 'input document has a cover image that is not identified as a cover. '
'an external cover.' 'In this case, if you set a cover in calibre, the output document will '
'end up with two cover images if you do not specify this option.'
) )
), ),
@ -1024,7 +1025,7 @@ OptionRecommendation(name='sr3_replace',
self.output_plugin.file_type not in ('mobi', 'lrf'): self.output_plugin.file_type not in ('mobi', 'lrf'):
from calibre.ebooks.oeb.transforms.linearize_tables import LinearizeTables from calibre.ebooks.oeb.transforms.linearize_tables import LinearizeTables
LinearizeTables()(self.oeb, self.opts) LinearizeTables()(self.oeb, self.opts)
if self.opts.unsmarten_punctuation: if self.opts.unsmarten_punctuation:
from calibre.ebooks.oeb.transforms.unsmarten import UnsmartenPunctuation from calibre.ebooks.oeb.transforms.unsmarten import UnsmartenPunctuation
UnsmartenPunctuation()(self.oeb, self.opts) UnsmartenPunctuation()(self.oeb, self.opts)