>> English << | Français | Deutsch | Magyar | 中文 | Polski ZVON > Tutorials > XSLT Tutorial
>> Page 2 << | Prev | Next | Contents | Element Index

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.

XSLT stylesheet 1

XML Source
<source>

<em>Hello, world</em>

</source>

Output
Hello, world

HTML view
Hello, world
XSLT stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>


</xsl:stylesheet>