xsl-list
[Top] [All Lists]

Re: default transform

2005-10-04 04:24:45
> <!-- 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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



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