Hi,
i'm using rvhtml to load - save data.
i get a wrong formatted content when creating lists with carriage returns :
This is the output html produced by SaveHTMLToStreamEx :
<ol>
<li type=1>a<br>b</b>
</ol>
That should be :
1. a
b
But after importing, i get :
1. a
1. b
(As i look in the rvhtml unit, i saw that the SetListMarker function was called when a <br> tag is found...)
Does anybody have a solution, without "hard" exporting list with rvsoMarkersAsText ? (i found a post about that - 06/06/2005 19:49:12)
Maybe adding a constraint when br is found and indenting instead of placing bullets ?
Thank you for any help and best regards,
Olivier