I have an XML file that I need to transform. For one reason for another the XML contains escaped HTML data in its fields (the users are using an app I can't edit to generate the XML).
<parent>
<child>%3Cul%3E%3Cli%3EBoy+this+is+fun%21%3C%2Fli%3E%3C%2Ful%3E</child>
</parent>
I know the best solution is to recreate the xml file with proper data, but as i stated that isn't an option currently. Is there a reasonably easy way to unescape this data for html output using an XSLT?