I am very new to XSLT and trying to transform this XML:
<Company>
<Employee>
<name>Jane</name>
<id>200</id>
<title>Dir</title>
<name>Joe</name>
<id>100</id>
<title>Mgr</title>
<name>Sue</name>
<id>300</id>
<title>Analyst</title>
</Employee>
</Company>
To this expected output:
<Company>
<Employee>
<name>Jane</name>
<id>200</id>
<title>Dir</title>
</Employee>
<Employee>
<name>Joe</name>
<id>100</id>
<title>Mgr</title>
</Employee>
<Employee>
<name>Sue</name>
<id>300</id>
<title>Analyst</title>
</Employee>
</Company>
Any help would be greatly appreciated, thanks!