I would like to convert a node and all it's content and children to a string.
for example I have this node
<node i="a">
<child1>azerty</child1>
<child2>qwerty</child2>
</node>
I would like to have function to translate to a string "str1" the content of the string will be like this:
<node i="a">
<child1>azerty</child1>
<child2>qwerty</child2>
</node>
That is the raw node contents in the exact shape it was in the source xml file.