ZVON > References > XSLT Reference
Example 63:2: All | XML | >> XSLT << | Output |

XSLT


     <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" xmlns:saxon = "http://icl.com/saxon" extension-element-prefixes = "saxon" version = "1.0" >
          <xsl:output method = "text" />

          <xsl:template match = "/" >
               <xsl:text >
      saxon:intersection .... </xsl:text>
               <xsl:value-of select = "function-available('saxon:intersection')" />
               <xsl:text >
        saxon:smile   .... </xsl:text>
               <xsl:value-of select = "function-available('saxon:smile')" />
               <xsl:text >
        intersection .... </xsl:text>
               <xsl:value-of select = "function-available('intersection')" />
          </xsl:template>
     </xsl:stylesheet>