The stylesheet is a well-formed XML document.
Root element is xsl:stylesheet
The xsl
prefix is mapped to the http://www.w3.org/1999/XSL/Transform
namespace URI
The xsl:stylesheet
element has a version
attribute with the value 1.0
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Templates will go here... -->
</xsl:stylesheet>