<root>
<parent>
<child1>
...
</child1>
<child2>
...
</child2>
</parent>
</root>
i would like like to add a newParent tag like so:
<root>
<parent>
<newParent>
<child1>
...
</child1>
<child2>
...
</child2>
</newParent>
</parent>
</root>
How do I do this?