changed unformatted description

This commit is contained in:
ldolse 2011-01-09 10:43:24 +08:00
parent e913024160
commit 289cdf3392
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class TXTInput(InputFormatPlugin):
'* single: Assume every line is a paragraph.\n'
'* print: Assume every line starting with 2+ spaces or a tab '
'starts a paragraph.'
'* unformatted: Most lines have hard line breaks, few/no spaces or indents.')),
'* unformatted: Most lines have hard line breaks, few/no blank lines or indents.')),
OptionRecommendation(name='formatting_type', recommended_value='auto',
choices=['auto', 'none', 'heuristic', 'markdown'],
help=_('Formatting used within the document.'

View File

@ -117,7 +117,7 @@ def detect_paragraph_type(txt):
single: Each line is a paragraph.
print: Each paragraph starts with a 2+ spaces or a tab
and ends when a new paragraph is reached.
unformatted: most lines have hard line breaks, few/no spaces or indents
unformatted: most lines have hard line breaks, few/no blank lines or indents
returns block, single, print, unformatted
'''