Re: Pipelining in XSLT

Call the template:

<xsl:template match="/">
  <xsl:call-template name="processPipeline" />
</xsl:template>

By default this will run the pipeline on the root node itself. If you want to explicitly pass in another document, use the $source parameter. For example:

<xsl:call-template name="processPipeline">
  <xsl:with-param name="source" select="document('source.xml')" />
</xsl:call-template>

Reply

The content of this field is kept private and will not be shown publicly.