Subject: Re: REQUIRED vs. IMPLIED attributes
From: David Carlisle <davidc@xxxxxxxxx>
Date: Sun, 23 Jul 2000 21:20:43 GMT
|
> 1. "grab any attribute and simply repeat it"
<xsl:copy-of select="@xxx" />
> 2. "grab IMPLIED attribute WHEN they're there
> and deal with them"
You can't tell the DTD type of an attribute from XSL. Why do you single
out IMPLIED?
I think you want
<xsl:template match="Link">
<h2 name="{@linkid}">
<xsl:copy-of select="@date"/>
<xsl:apply-templates/>
</h2>
</xsl:template>
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|