is it possible to disable-output-escaping twice in XSLT
问题 I have XML that has encoded HTML data. I am trying to render the data but can't seem to figure out how. Best I can tell is I need to disable-output-escaping="yes" twice but not sure how to do that. For example, this is a snippet of my XML: <root> <node value="<b>body</b>" /> </root> My XSLT is outputting HTML. Here is the rendered output (the HTML source) with various options <xsl:value-of select="@value" /> outputs <b>hi</b> <xsl:value-of select="@value" disable