XML document containing ∈ not valid - how to output using XSLT?

Irvilne

New Member
I have an XML document, and one of the nodes contains \[code\]&isin;\[/code\] like this:\[code\]<Text>&isin;</Text>\[/code\]It tells me that it is invalid XML, so I tried this:\[code\]<Text><![CDATA[&isin;]]></Text>\[/code\]The XML is now valid, but when I output the content of the node in my XSLT transform using \[code\]<xsl:value-of select="."/>\[/code\], it outputs the following: \[code\]&isin;\[/code\].I want it to output simply \[code\]&isin;\[/code\] as it is a transformation to HTML and I want the ∈ symbol to show up! Am I missing any tricks?
 
Back
Top