XSLT Elements
A version of this page is also available for
4/8/2010
XSL Transformations (XSLT) can be used to manipulate, sort, and filter XML data. Many transformations will target well-formed HTML. Well-formed means that any HTML tag can be used, subject to the stricter syntax rules of XML — all start tags are paired with end tags and are nested correctly. Well-formed HTML can be displayed by the browser, or further manipulated by XML tools. The World Wide Web Consortium (W3C) currently has a recommendation for making the next generation of HTML an XML application. W3C XHTML™ 1.0: The Extensible HyperText Markup Language, described in the World Wide Web Consortium Web site describes the benefits of defining well-formed HTML. XSLT is a valuable tool for generating well-formed HTML or other XML files.
XSLT enables you to define templates for your output, into which data from the XML source is delivered. Each template defines a pattern that identifies elements in the source tree and defines the resulting output subtree to be generated. The XSLT transformation processor merges data from the XML source document with the template. By combining a set of template fragments into a style sheet, XSLT can be used to perform data-driven transforms useful for highly irregular XML data and XML documents.
XSLT templates are defined using the following set of XML elements:
XSLT Elements
Reference
Other Resources
XML Stylesheet Language Transformations (XSLT)
Element | Description |
---|---|
Invokes an overridden template rule. |
|
Directs the XSLT processor to find the appropriate template to apply, based on the type and context of each selected node. |
|
Creates an attribute node and attaches it to an output element. |
|
Defines a named set of attributes. |
|
Invokes a template by name. |
|
Provides multiple conditional testing in conjunction with the <xsl:otherwise Element> and <xsl:when Element>. |
|
Generates a comment in the output. |
|
Copies the current node from the source to the output. |
|
Inserts subtrees and result-tree fragments into the result tree. |
|
Declares a decimal-format, which controls the interpretation of a format pattern used by the format-number Function. |
|
Creates an element with the specified name in the output. |
|
Calls template content that can provide a reasonable substitute to the behavior of the new element when encountered. |
|
Applies a template repeatedly, applying it in turn to each node in a set. |
|
Allows simple conditional template fragments. |
|
Specifies an XSLT style sheet to include. |
|
Specifies another XSLT style sheet to include. |
|
Declares a named key for use with the key function in XML Path Language (XPath) expressions. |
|
Sends a text message to either the message buffer or a message dialog box. |
|
Replaces the prefix associated with a given name space with another prefix. |
|
Inserts a formatted number into the result tree. |
|
Provides multiple conditional testing in conjunction with the <xsl:choose Element> and <xsl:when Element>. |
|
Specifies options for use in serializing the result tree. |
|
Declares a named parameter for use within an xsl:stylesheet Element or xsl:template Element. Allows specification of a default value. |
|
Preserves white space in a document. |
|
Generates a processing instruction in the output. |
|
Defines global variables and functions for script extensions. |
|
Specifies sort criteria for node lists selected by xsl:for-each Element or xsl:apply-templates Element. |
|
Strips white space from a document. |
|
The document element of a style sheet, containing all other style sheet elements. |
|
Defines a reusable template for generating the desired output for nodes of a particular type and context. |
|
Generates text in the output. |
|
Synonym for xsl:stylesheet Element. |
|
Inserts the value of the selected node as text. |
|
Specifies a value bound in an expression. |
|
Provides multiple conditional testing in conjunction with the <xsl:choose Element> and <xsl:otherwise Element>. |
|
Passes a parameter to a template. |
* Microsoft proprietary extensions to support scripting