I have straight forward XML formed:
<root>
<product code="article_1"> some other code </product>
<product code="article_2"> some other code </product> ... and so on...
</root>
I am trying to put every node into separate xml which would then need to be named accordingly to code value in that product node. So for example first product node in above xml would be in xml named article_1.xml, second would be in xml named article_2.xml ... and so on.
Can this be done with xslt :D and how?