don't want xslt intepret the entity characters
问题 The xml was like this: < cell i='0' j='0' vi='0' parity='Odd' subType='-1'> & #34;String& #39;</cell> But after the intepretion of the xsl, the output is like this: < td nowrap="true" class="gridCell" i="0" j="0">"String'< /td> I would like to keep the & #34; and & #39;. I've tried character map,but it doesn't work. The code is like this: < xsl:character-map name="raquo.ent"> <xsl:output-character character="'" string="'"/> <xsl:output-character character="'" string="'"/> < /xsl