Creating a new file with output in XSL
Sometimes its useful to create several files from one huge input xml file. To do this in version 1.0 you have to make use of extensions in your xsl processor.
1. XSL 1.0
Saxon
Use the saxon:output command
<saxon:output method="xml" href="articles.xml">
<fishtank>
<fish>Green fish</fish>
<fish>Blue Fish</fish>
</fishtank>
</saxon:output>

