
Originally Posted by
ivan.zderadicka
Hi,
once I've learned how used XML literals in code segments in templates I enjoyed them (although the code looks like real mess :-).
Now strange thing happens - I've all different XML tags in the code , but for some strange reason reason I cannot get there <br/> tag.
Code:
<p>
"Bla"
<br/>
"Bla"
</p>
gives this error: pre, line 3, column 4: invalid XmlNode
and
Code:
<p>
"Bla"
<br></br>
"Bla"
</p>
gives other error: pre, line 3, column 5: invalid Primary.
I'm on Lyons - what could be wrong?
Try terminating the string lines (that are not valid xml nodes with the semi-colon ";" like this.
Code:
<p>
"Bla";
<br></br>
"Bla";
</p>
We are more ready to try the untried when what we do is inconsequential. Hence the fact that many inventions had their birth as toys. - Eric Hoffer