XSLT
Extensible Stylesheet Language Transformations (XSLT) is a programming language for transforming XML documents into other XML documents, text documents, or HTML documents. Other output formats are possible (e.g., PDF transformations using XSL-FO).
A typical transformation is accomplished as follows:
- A stylesheet is created (typically a
.xslfile). - An XML data source is created (such as a
.xmlfile). - The XSLT processor is loaded with both the XSL and XML content.
- The XML document is parsed into an XPath Data Model (XDM) tree (XDM is similar to DOM).
- The XDM tree is traversed to produce a resulting document.
XSLT syntax is based on XML, which means that XSL documents also are well-formed XML documents. XSLT, with heavy emphasis on recursion, borrows principles from functional languages, including: declarative programming, pattern matching, and immutable variables.
As XSL is written in an XML format, its verbosity does not make it the first choice for general-purpose programming. When used correctly, XSL transformations produce elegant solutions to complex problems that are harder to solve in imperative languages.
XSLT Processors and Libraries
Various XSL transformation processors and libraries include:
History
XSLT was proposed by the W3C and has two standards: 1.0 and 2.0.
Question Tags
Questions should use the xslt-1.0, xslt-2.0, or xslt-3.0 tag as appropriate to clarify what XSLT version the question requires or references.
