Stylesheets can be imported using xsl:import elements. These elements must be the first children of xsl:stylesheet. If there is any preceding element it causes fatal error.
|
XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:import href="st1-a.xslt"/> <xsl:import href="st1-b.xslt"/> <xsl:template match="bbb"> <yyy-bbb/> </xsl:template> </xsl:stylesheet> st1-a.xslt
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:output method="xml" omit-xml-declaration="yes"/> <xsl:template match="/aaa"> <xxx> <xsl:apply-templates/> </xxx> </xsl:template> </xsl:stylesheet> st1-b.xslt
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:template match="ccc"> <yyy-ccc/> </xsl:template> </xsl:stylesheet> |
|
|
XML
<aaa> <bbb/> <ccc/> </aaa> |
Output
<xxx> <yyy-bbb/> <yyy-ccc/> </xxx> |
| Previous chapter: | Multiple source documents |
| Next chapter: | Multiple Outputs |
| Previous page: | - - - |
| Next page: | Stylesheets inclusion |