I'm not even sure if it's possible but say I have some XML:
<source>
<list>
<element id="1"/>
</list>
</source>
And I would like to insert into list:
<element id="2"/>
Can I write an XSLT to do this?
|
|
|
|
|
|
|
Add these 2 template definitions to an XSLT file:
|
||
|
|
|
XSLT basically changes one XML document into another, for instance it might take a data XML file and produce a web display XHTML file. XSLT doesn't change the original file. It does include the ability to repeat some XML for each element in a data file - is that what you mean? |
||
|
|