Category:XSLT: Difference between revisions

From Rosetta Code
Content added Content deleted
(New page: {{language|XSLT}}'''XSLT''', which stands for '''Extensible Stylesheet Language Transformations''', is a domain specific functional language for extracting data from and transforming [[XML...)
 
m (Filling out language template)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{language|XSLT
{{language|XSLT}}'''XSLT''', which stands for '''Extensible Stylesheet Language Transformations''', is a domain specific functional language for extracting data from and transforming [[XML]] documents. The language itself uses [[XML]] syntax. It is defined in three pieces:
|site=http://www.w3.org/TR/xslt
|LCT=no
}}
'''XSLT''', which stands for '''Extensible Stylesheet Language Transformations''', is a domain specific [[functional programming|functional]] language for extracting data from and transforming [[XML]] documents. The language itself uses [[XML]] syntax. It is defined in three pieces:
# '''Extensible Stylesheet Language''' (XSL) is the base language
# '''Extensible Stylesheet Language''' (XSL) is the base language
# '''XPath''' is an expression language used within many of the attributes to address portions of the document and manipulate values
# '''XPath''' is the expression language used within many of the attributes to address portions of the document and manipulate values
# '''Formatting Objects''' (FO) is a extension for providing page layout and presentation, which has a similar model to PDF
# '''Formatting Objects''' (FO) is an extension for providing page layout and presentation, which has a similar model to PDF

Latest revision as of 19:45, 3 December 2010

Language
XSLT
This programming language may be used to instruct a computer to perform a task.
Official website
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using XSLT.

XSLT, which stands for Extensible Stylesheet Language Transformations, is a domain specific functional language for extracting data from and transforming XML documents. The language itself uses XML syntax. It is defined in three pieces:

  1. Extensible Stylesheet Language (XSL) is the base language
  2. XPath is the expression language used within many of the attributes to address portions of the document and manipulate values
  3. Formatting Objects (FO) is an extension for providing page layout and presentation, which has a similar model to PDF