Subject: Re: Identity Transform losing special characters
From: Karl Stubsjoen <kstubs@xxxxxxxxx>
Date: Fri, 20 Feb 2009 10:42:21 -0700
|
Always insightful! Thanks all for the help on this. As usual, the
result/behavior is quite expected.
Karl..
On Fri, Feb 20, 2009 at 4:44 AM, Jesper Tverskov
<jesper.tverskov@xxxxxxxxx> wrote:
> I guess this is the proper solution then:
>
> <xsl:character-map name="x">
> <xsl:output-character character=" " string="&#160;"/>
> </xsl:character-map>
> <xsl:output indent="yes" use-character-maps="x"/>
>
> <xsl:template match="@*|node()">
> <xsl:copy>
> <xsl:apply-templates select="@*|node()"/>
> </xsl:copy>
> </xsl:template>
> </xsl:stylesheet>
>
>
> Cheers,
> Jesper Tverskov
>
> http://www.xmlkurser.dk
> http://www.xmlplease.com
|