I have xml
file which will be read and displayed As .html
page. The xml looks something like
<title>Title Text</title>
<text>
<![CDATA[ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.]]>
</text>
Now the problem is when we read this xml file and display it as html we don't have any line break
between title and text.
What will be the best way to add line break in xml tags?
is the standard line break for HTML and will work in xml as well.
I know that 
 also breaks a line in xml but I am unsure if it breaks a line in HTML. I hope this helps.
Title Text
should solve the problem for you I hope :) If not, truly sorry...