I mainly use some XSLTs to convert XML, is there an XSLT way to spill out XML that feeds it? Sort of:
The easiest and shortest way :
<xsl:copy-of select="/"/>
This outputs the current XML document.
<xsl:copy-of select="."/>
, node.
XSLT ( ):
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
, XML-, .
XSLT. , , , (, , ,... ..)/