I have a set of rules in my stylesheet for setting up a table of contents.
Each of the rules has <xsl:template match=something mode="toc">. The
different rules match different XML elements. To actually generate the TOC,
I need something in the root rule that will go through the stylesheet and
apply all of the rules that have mode="toc". I tried the following, but it
didn't work:
<xsl:apply-templates mode="toc" select="*"/>
Neither does this:
<xsl:apply-templates mode="toc"/>
The only thing I could get to work it a bit of a kludge:
<xsl:apply-templates mode="toc" select="//Title|//Head|//Chapter (etc.)"/>
...where Title, Head, Chapter, etc. are all the elements included in my TOC.
Is there a more elegant way to do this?
Oren Hadar
Application Designer
Interleaf, Inc.
(781) 768-1082
ohadar@xxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|