If I have the xml file called "abc.xml" which has the following contents:
<a rel=\"nofollow\">
<b>123</b>
456
</a>
and I have another xml called "def.xml" and I want the contents of abc.xml merage with def.xml, such that:
<a rel=\"nofollow\">
<b>123</b>
456
789
</a>
What code should I add into the def.xml?