Hello.
I would like the <xmlpoke> task to not "clean up" the xml structure.
For example, if I have the following nodes:
<a>
<b/><b/><b/>
</a>
The <xmlpoke> task would change it to:
<a>
<b/>
<b/>
<b/>
</a>
I use the <xmlpoke> task to do stuff with my html pages and so this behavior causes unwanted extra spaces to appear.
Thank you.