Subject: RE: produce a list
From: Ben Robb <Ben@xxxxxxxxxx>
Date: Fri, 7 Apr 2000 15:21:44 +0100
|
<xsl:template match="*">
<xsl:choose>
<xsl:when test="@id">
<xsl:value-of select="@id"/>
</xsl:test>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
</xsl:template>
<!-- negate the default text template -->
<xsl:template match="text()" />
should work (though I haven't tested it)
Rgs,
Ben
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|