XML information pipe
Ihre Spezialisten für XML
Every XSL stylesheet must start with xsl:stylesheet element. The atribute version='1.0' specifies version of XSL(T) specification. This example shows the simplest possible stylesheet. As it does not contain any information, default processing is used.
Root element
Example 1
| XML source: | <source> <em>Hello, world</em> </source> |
| XSLT stylesheet: | <xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> </xsl:stylesheet> |
| HTML view: | Hello, world |
| HTML code: | Hello, world |