conversion to HTML fails to change consecutive spaces
Brought to you by:
andrewpunch
If the input is indented, the output HTML looks like this:-
<HTML>
<BODY>
This
<br> is
<br> indented
<br> here
<br></BODY>
</HTML>
Which is *wrong*. What it *should* look like this this:-
<HTML>
<BODY>
This
<br> is
<br> indented
<br> here
<br></BODY>
</HTML>
Logged In: YES
user_id=928005
Multiple spaces must be encoded as
See:
http://www.w3.org/TR/html4/struct/text.html#h-9.1
"In particular, user agents should collapse input white
space sequences when producing output inter-word space."
i.e. Multiple whitespaces in a row should be treated as a
single white space.
Logged In: YES
user_id=928005
Will be fixed in next version
Logged In: YES
user_id=928005
Fixed. The rtf reader does not support indentation so I will
move this item to a feature request.