Quote:
Originally Posted by Balorn
I got this in the html file in the debug\input folder:
Code:
<p>This test.</p>
<p>is a</p>
<p>a is</p>
<p>test. This</p>
|
This is actually a bug. The proper output should be:
Code:
<p>This test.</p>
<p>is a</p>
<p>a is</p>
<p>test. This</p>
This is because it is converting to HTML internally and those extra white spaces will be condensed into one when rendering.
Adding an option to maintain white space exactly is possible but I don't see much point to it because it defeats the purpose of creating a reflowable document.