<xsl:output method="xml" /> XML->XSL->XML->XSL->HTML4.01

wxdqz

New Member
I've been playing with XSL and have been wondering how <xsl:output method="xml" /> works.

Can the XML -- that the XSL outputs -- accept a stylesheet?

<?xml-stylesheet type="text/xsl" href=http://www.webdeveloper.com/forum/archive/index.php/"style.xsl"?>

and style the outputed XML through XSL again and then on that stylesheet choose to output HTML4.01 via

<xsl:output
method="html"
doctype-system="http://www.w3.org/TR/html4/strict.dtd" doctype-public="-//W3C//DTD HTML 4.01//EN"
encoding="ISO-8859-1"
omit-xml-declaration="yes"
version="4.0" />

or is the XML that it outputs unable to be styled?

As you can see, I'm still a little confused how method="xml" works.
 
Back
Top