Subject: disable-output-escaping in xsl:attribute
From: "Stefan Borchert" <stefan@xxxxxxxxxxxx>
Date: Fri, 22 Oct 2004 09:28:14 +0130
|
Ji!
I've got the following source:
<xsl:element name="span">
<xsl:attribute name="title">
<xsl:text disable-output-escaping="yes">Gäste</xsl:text>
</xsl:attribute>
<xsl:text disable-output-escaping="yes">Gäste</xsl:text>
</xsl:element>
Then I process it via PHP (and Sablotron 1.0) and it produces:
'<span title="G&auml;ste">Gäste</span>' instead of the expected
'<span title="Gäste">Gäste</span>'.
How can I fix this?
thanks,
Stefan
|