Re: <note> in xmlspec.xsl

"Kay, Michael" <Michael.Kay@softwareag.com> writes:

> The template rule for <note> elements in the new XSL stylesheet is:
> 
>   <xsl:template match="note">
>     <div class="note">
>       <p class="prefix">
>         <b>Note:</b>
>       </p>
>       <xsl:apply-templates/>
>     </div>
>   </xsl:template>

Indeed -- I've overriden this with

  <xsl:template match="note"> <!-- override -->
    <div class="note">
      <b>Note:&#160;</b>
      <xsl:apply-templates/>
    </div>
  </xsl:template>

ht
-- 
  Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh
          W3C Fellow 1999--2002, part-time member of W3C Team
     2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440
	    Fax: (44) 131 650-4587, e-mail: ht@cogsci.ed.ac.uk
		     URL: http://www.ltg.ed.ac.uk/~ht/
 [mail really from me _always_ has this .sig -- mail without it is forged spam]

Received on Tuesday, 17 September 2002 08:25:56 UTC