Re: [xsl] default transform

Subject: Re: [xsl] default transform
From: Geert Josten <Geert.Josten@xxxxxxxxxxx>
Date: Tue, 04 Oct 2005 13:24:45 +0200
> <!-- remaining tree needs to go as is to output xml -->

identity transform:

<xsl:template match="@*|node()">
   <xsl:copy>
	<xsl:apply-templates select="@*|node()"/>
   </xsl:copy>
</xsl:template>

<xsl:template match="//A/B">

You don't need the // in front of the A/B..


Cheers,
Geert

Current Thread