|
|
1.1 parser 1: <?xml version="1.0"?>
2: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3: <xsl:param name="param1"/>
4:
5: <xsl:template match="doc">
6: <html>
1.2 ! parser 7: <title>test4</title>
1.1 parser 8: <xsl:apply-templates/>
9: </html>
10: </xsl:template>
11:
12: <xsl:template match="important">
13: <b><xsl:value-of select="."/></b>
14: </xsl:template>
15: </xsl:stylesheet>