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: glossary




> Is it possible to generate as part of an output xml file
> only those gloss entries which are contained in the report


<xsl:template match="glossary">
<xsl:for-each select="entry[term=//acronym]">

possibly with a normalize-space or two thrown in, so that 
  <acronym> RNIN </acronym> and   <acronym>RNIN</acronym>
are the same, and possibly instead using keys so that
the rather expensive // operation isn't done afresh for each entry

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]