XSLT can be used to produce XML, HTML, or text output.
XML output is the default.
If you want to do it explicitly, then the following code is used:
<xsl:output method="xml" />
The value of the method attribute is case sensitive and must be all lowercase.
HTML output is specified like this:
<xsl:output method="html" />
Text output is specified like this:
<xsl:output method="text" />
|