Previous | Next | Indexes
Zvon > Tutorials > XSLT 2.0 Tutorial > Modes (4/7) >

Mode "#default" in shared modes

The predefined "#default" mode is not only useful for explicit naming of modes. It enables sharing of default processing templates with other modes.

XSLT

      <xsl:stylesheet
                  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                  version="2.0">
            <xsl:output  method="xml"
                        indent="yes"
                        omit-xml-declaration="yes"/>

            <xsl:template  match="/aaa">
                  <xsl:apply-templates  select="bbb"
                              mode="m1"/>
                  <xsl:apply-templates  select="bbb"
                              mode="m2"/>
                  <xsl:apply-templates  select="bbb"/>
            </xsl:template>

            <xsl:template  match="bbb"
                        mode="m1 #default"> --- </xsl:template>

            <xsl:template  match="bbb"
                        mode="m2"> hello </xsl:template>

      </xsl:stylesheet>
XML

      <aaa>
            <bbb/>
      </aaa>
Output
--- hello ---


Previous chapter: Value-of
Next chapter: Context
Previous page: Mode: #default
Next page: Mode: #all