| 123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:saxon="http://icl.com/saxon"
- xmlns:exslt="http://exslt.org/common"
- exclude-result-prefixes="xs"
- version="2.0">
-
- <xsl:template name="main">
- <xsl:variable name="fragment">value</xsl:variable>
-
- <xsl:apply-templates
- select="exslt:node-set($fragment)"
- mode="postprocess"
- xmlns:saxon="http://icl.com/saxon"/>
-
- </xsl:template>
-
-
- <xsl:template match="item" saxon:trace="yes"
- xmlns:saxon="http://icl.com/saxon">
- </xsl:template>
-
- </xsl:stylesheet>
|