How can I write an XSLT that will recursively include other files?
- by Eric
Let's say I have a series of xml files in this format:
A.xml:
<page>
<header>Page A</header>
<content>blAh blAh blAh</content>
</page>
B.xml:
<page also-include="A.xml">
<header>Page B</header>
<content>Blah Blah Blah</content>
</page>
Using this XSLT:
…