Hi,

I have an XML source, and am using a Stylesheet (XSLT) to transform the output. Simple example...

Code:
<parent id="111">
  <child1>A</child1>
  <child1>B</child1>
  <child1>c</child1>
</parent>
I need to be able to embed a CR using a loop so that the output looks as below:

Code:
<parent id="111">
A
B
C
</parent>
I have a memory that you can embed characters by refering to them using Hex but I cant remember.... does anybody else?

Thanks in advance,
DJ