[
Lists Home |
Date Index |
Thread Index
]
Razvan MIHAIU wrote:
> You are speaking about an XSLT stylesheet ?
> In this case you must have at least a template matching the root
> element. That template should at least contain:
>
> <xsl:apply-templates />
>
> To my understanding this is the bare minimum.
No, it isn't. The minimum is:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
</xsl:stylesheet>
This could even be an empty element. You do not need xsl:apply-templates.
--
Elliotte Rusty Harold elharo@metalab.unc.edu
XML in a Nutshell 3rd Edition Just Published!
http://www.cafeconleche.org/books/xian3/
http://www.amazon.com/exec/obidos/ISBN=0596007647/cafeaulaitA/ref=nosim
|