I have an input XML that comes from a Unicode system. I have names for products that look like this:
<MAKTX>Bear & Friends</MAKTX>
My XSLT transforms XML to XML. In my output the above line looks like this:
<MAKTX>Bear<(>&<)>Friends</MAKTX>
But I expect
<MAKTX>Bear&Friends</MAKTX>
I can't change the input XML from my source system.
How do I transform the Unicode &
to the HTML entity &
?