XSLT module
A file using the .xsl
extension and containing an XSLT stylesheet.
An XSLT module is an XML document and the document element must be either <xsl:stylesheet>
or <xsl:transform>
. Both elements are interchangeable.
Examples
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="#all">
</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="#all">
</xsl:transform>
Created on , last edited on