[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] zap some node
Subject: Re: [xsl] zap some node
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 27 Sep 2006 15:13:39 +0100
|
small correction:
<xsl:template match="@idCUP">
<xsl:attribute name="idCup">
<!-- oops, sorry <xsl:value-of select="@idCUP"/> -->
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
|