Tabs have no effect in ebooks. You can easily remove extra blank lines if the source is plain text, like you'd get from cut and paste. Just use a language with regular expressions, like Perl or Python. Something like s/\n\n/\n/g. Assuming the text is in one variable.
|