This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Templates for attributes?


> 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]