| Nic Miloslav Example 5 | KEYWORDS EXAMPLES AUTHORS |
|---|
Every XSL stylesheet must start with xsl:stylesheet element. The atribute version='1.0' xmlns:xsl specifies version of XSL(T) specification. This example shows the simplest possible stylesheet. As it does not contain any information, default processing is used.
| XML | HOME XSL 1 |
|---|
| <xslTutorial > |
| <em>Hello, world</em> |
| </xslTutorial> |
| XSL 1 | HOME XML HTML 1 OUTPUT 1 |
|---|
| <xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' > |
| </xsl:stylesheet> |
| HTML 1 | HOME XML XSL 1 OUTPUT 1 |
|---|
| <HTML> |
| <HEAD> </HEAD> |
| <BODY> Hello, world </BODY> </HTML> |
| OUTPUT 1 | HOME XML XSL 1 HTML 1 |
|---|