Re: [xsl] node kind of result tree

Subject: Re: [xsl] node kind of result tree
From: Michael Sokolov <sokolov@xxxxxxxxxxxx>
Date: Mon, 21 Jan 2013 17:11:01 -0500
On 1/20/2013 6:36 PM, Max Toro wrote:
Excluding the use of xsl:result-document, is the result of an XSLT
transformation always a document-node() ?

The spec talks about result trees, but couldn't figure out if the tree
is always rooted at a document-node() or if a tree rooted at an
element() is allowed.

Hm - it is also possible to produce a sequence of "result-trees". I guess each one would be a document-node(), or be wrapped in one:

<xsl:template match="/">
  <xsl:copy-of select="*" />
  <xsl:copy-of select="*" />
</xsl:template>

would produce a sequence of two documents, as I understand it

-Mike

Current Thread