xsl-list
[Top] [All Lists]

entity output

2003-06-12 11:16:36
I have the following XML:
<?xml version="1.0"?>
<root>
        <test attr="Spring Wound &quot;Bypass&quot; Timers" />
</root>


And the following XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
        version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="html" encoding="UTF-8" />

<xsl:template match="/root/test">
        <xsl:value-of select="@attr" />
</xsl:template>

</xsl:stylesheet>


The output of this is:
Spring Wound "Bypass" Timers


But what I need is:
Spring Wound &quot;Bypass&quot; Timers

I'm using MSXML4 for this. I've tried translate(), but not surprisingly, it 
doesn't work. Is there anyway I can get the output here to have the entity 
encoded quote (&quot;) instead of just a plain quote (")?

Craig

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>