Subject: RE: Templates for attributes?
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Wed, 11 Oct 2000 09:48:39 +0100
|
> I wish to apply templates to second-level elements,
> to draw out something, and then to further apply
> templates to draw out attributes.
Try defining template rules that apply to the attributes, e.g.
<xsl:template match="@title">
rather than to elements carrying those attributes, which is what
match="*[@title]" achieves.
To invoke these templates, use <xsl:apply-templates select="@*"/> on the
parent element.
Mike Kay
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|