I am working with an XML file that has raw HTML stored inside a node's attribute (<node data="HTML...">).
I just realized that the HTML is double-encoded, so that, instead of being:
<div>
It is actually written as:
&lt;div&gt;
This means that if I do something like:
<xsl:value-of select="node/@data" disable-output-escaping="yes" />
I will still get a (single) escaped value:
<div>
What's the easiest way of unescaping this once again?