I need to rip some xml nodes from a xml document. The source is
<root>
<customElement>
<child1></child1>
<child2></child2>
</customElement>
<child3></child3>
<child4></child4>
</root>
the result should be
<root>
<child1></child1>
<child2></child2>
<child3></child3>
<child4></child4>
</root>
As you can see only the 'customElement' element is removed, but the child elements are still part of the result document. How can I do this using xslt transformation.