Re: [xsl] Identity Transform losing special characters

Subject: Re: [xsl] 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="&#160;" string="&amp;#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

Current Thread