
xsl:stylesheet
The <xsl:stylesheet> element (or the equivalent <xsl:transform> element) is the outermost element of a stylesheet.
Namespace Declaration: A pseudo-attribute required to identify the document as an XSLT stylesheet. Typically this is xmlns:xsl="http://www.w3.org/1999/XSL/Transform".
<xsl:stylesheet version=NUMBER xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id=NAME extension-element-prefixes=LIST-OF-NAMES exclude-result-prefixes=LIST-OF-NAMES> ENTIRE STYLESHEET </xsl:stylesheet>Specifies the version of XSLT required by this stylesheet.
id: (Not supported at this time.)
Specifies an id for this stylesheet. This is most often used when the stylesheet is embedded in another XML document.
extension-element -prefixes: (Not supported at this time.)
Specifies a space-separated list of any namespace prefixes for extension elements in this document.
Specifies any namespace used in this document that should not be sent to the output document. The list is whitespace separated.
|
Send comments on this document to
devdoc-feedback@netscape.com |