New line character and carriage return in XML, please help, thanks
843834Jan 31 2006 — edited Feb 2 2006In XML, " " is only the new line character. I have tried that. If you put that in your XML, for example:
<tag>line1 line2 line3</tag>
You will get the output as follow:
line1
____line2
________line3
(where ___ represents space)
The output that I want is actually like:
line1
line2
line3
So I would like to ask how I can do this.
Thanks,
Jackie