I'd link to transform XML with attributes like the 'name' attribute in the following:
<books>
<book name="TheBumperBookOfXMLProgramming"/>
<book name="XsltForDummies"/>
</books>
into elements called what was in the name attribute:
<books>
<TheBumperBookOfXMLProgramming/>
<XsltForDummies/>
</books>
using XSLT. Any ideas?