Source: commons.wikimedia.org

XSLT is a language originally designed for transforming XML documents into other XML documents, or other formats such as HTML for web pages, plain text, or XSL Formatting Objects. These formats can be subsequently converted to formats such as PDF, PostScript, and PNG. Support for JSON and plain-text transformation was added in later updates to the XSLT 1.0 specification. Wikipedia

Created Year: 1999
Developed by: World Wide Web Consortium
Aliases: XSL Transformations, Extensible Stylesheet Language Transformations
File extensions: xsl, xslt

Wikidata: Q32110

Programming paradigms: declarative programming

Language types: XML transformation languagedeclarative programming language

Hello World in XSLT

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
        <xsl:text>Hello World</xsl:text>
    </xsl:template>
</xsl:stylesheet>

Search on GitHub


Latest data update: 2025-02-23