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: REQUIRED vs. IMPLIED attributes




> 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

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