My xml is like this:
<rootnode>
<child name="tony">
...
</child>
<child name="antho">
...
</child>
</rootnode>
I want to be able to output the xml element for child tony verbatim. I can find this element using XmlSlurper but then I am left with an object represent, I just want the XML verbatim. How do I do that?
<child name="tony">
...
</child>