I have a xslt stylesheet with multiple xsl:imports and I want to merge them all into the one xslt file.
xsl:import
It is a limitation of the system we are using wh
Why would you want to? They're usually seperated for a reason afterall (often maintainability)
You could always write the merge yourself - read the XSL files in, select the template items you're interested in and write to a new master XSL file...