I need to create XSL to translate escaped format special characters to normal format.
To be more specific, below is an example of the text with escaped format special characters:
<p attribute1='value 1' attribute2='value 2'> <ph attribute3='value 3' amp;gt;TEXT</ph> </p>
Here is the XML that I would like to produce from the above:
<p attribute1="value 1" attribute2="value 2"><ph attribute3="value 3">TEXT</ph></p>
Has anyone done anything like this before?
Thank you.