From 7d75b065126f1bc5feade93c991db0b6fd261073 Mon Sep 17 00:00:00 2001 From: John Schember Date: Fri, 14 Jan 2011 18:53:02 -0500 Subject: [PATCH] Change heuristic options to default False to maintain consistency. --- src/calibre/ebooks/conversion/plumber.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/ebooks/conversion/plumber.py b/src/calibre/ebooks/conversion/plumber.py index a40c17a743..2e88baea4e 100644 --- a/src/calibre/ebooks/conversion/plumber.py +++ b/src/calibre/ebooks/conversion/plumber.py @@ -500,7 +500,7 @@ OptionRecommendation(name='italicize_common_cases', 'italics and italicize them.')), OptionRecommendation(name='fix_indents', - recommended_value=True, level=OptionRecommendation.LOW, + recommended_value=False, level=OptionRecommendation.LOW, help=_('Turn indentation created from multiple   entities ' 'into CSS indents.')), @@ -517,7 +517,7 @@ OptionRecommendation(name='unwrap_lines', help=_('Unwrap lines using punctuation and other formatting clues.')), OptionRecommendation(name='delete_blank_paragraphs', - recommended_value=True, level=OptionRecommendation.LOW, + recommended_value=False, level=OptionRecommendation.LOW, help=_('Remove empty paragraphs from the document when they exist between ' 'every other paragraph')), @@ -528,7 +528,7 @@ OptionRecommendation(name='format_scene_breaks', 'horizontal rules.')), OptionRecommendation(name='dehyphenate', - recommended_value=True, level=OptionRecommendation.LOW, + recommended_value=False, level=OptionRecommendation.LOW, help=_('Analyses hyphenated words throughout the document. The ' 'document itself is used as a dictionary to determine whether hyphens ' 'should be retained or removed.')),