- From: Arnold, Curt <Curt.Arnold@hyprotech.com>
- Date: Fri, 17 Aug 2001 10:29:51 -0600
- To: "'www-dom-ts@w3.org'" <www-dom-ts@w3.org>
I had overlooked two (non-metadata) elements that have significant text content, comment and member. Adding the following template will process those two elements. All other whitespace will be discarded. <xsl:template match="*[local-name() = 'comment' or local-name() = 'member']"> <xsl:element namespace="http://www.w3.org/2001/DOM-Test-Suite/Level-1" name="{local-name(.)}"> <xsl:apply-templates select="@*"/> <xsl:apply-templates select="text()"/> </xsl:element> </xsl:template>
Received on Friday, 17 August 2001 12:32:57 UTC