<xslTutorial creator="nicmila@idoox.com">
<index keywords='xsl:output'/>

<description>In the absence of xml:output element the  default output method is xml (<stylesheet id='id2'/>), but if document element of the output has value html (case insensitive) , then html method is used (<stylesheet id='id3'/>).
</description>

<xmlSource id="id1">
<H1> XML output </H1>
<HR/>
</xmlSource>

<attValues>
<value match=''></value>
</attValues>

<xslStylesheet id="id2">
     
<xsl:template match="/">
<xsl:copy-of select="/xslTutorial/*"/>
</xsl:template>
</xslStylesheet>

<xslStylesheet id="id3">
     
<xsl:template match="/">
<html>
<xsl:copy-of select="/xslTutorial/*"/>
</html>
</xsl:template>
</xslStylesheet>
</xslTutorial>