apply template for a document : document « XSLT stylesheet « XML






apply template for a document




File: Data.xml
<shirts>
  <shirt colorCode="c4">item 1</shirt>
  <shirt colorCode="c1">item 2</shirt>
  <shirt colorCode="c6">item 3</shirt>
</shirts>

File: Transform.xslt

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:output method="xml" omit-xml-declaration="yes" />

  <xsl:template match="shirts">
    <shirts>
      <xsl:apply-templates select="document('Data.xml')" />
      <xsl:apply-templates />
    </shirts>
  </xsl:template>

  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

 








Related examples in the same category

1.Apply template to a certain node in a document
2.Put xml document to a table layout
3.Format table cell during transforming
4.Variable for document