[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Empty nodes AND attributes stripping - I'm so lost


Subject: Re: [xsl] Empty nodes AND attributes stripping - I'm so lost
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 2 Sep 2004 16:51:59 +0100

just copy the identity transform from the xslt spec:


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

then add a template to zap empty attributes:

<xsl:template match="@*[.='']"/>

and a template to zap empty elements


<xsl:template match="*[not(node())]"/>

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


Current Thread
Keywords