Currently working on a project thats pulling in XML that has htmlText formatted as follows;
<p>blah</p>
<p>blah…</p>
<p>blah…</p>
which should come out as
blah
blah…
blah…
however ist is coming out as follows,
blah
blah…
blah…
Does anyone know why it does not get processed as correct HTML text?
I have tried doing a string replace on </p> ===> </p><p> </p> which works, but it seems to be picking up the \r or
from Dreamweaver and placing double line breaks.
Anyone have any ideas of a workaround? or why its placing double space sometimes.:hitman2: