This is an example of the existing xml I am working with:
<
products
>
<
product
name
=
"Bob"
>
<
build
>
<
version
>1.2.2
version
>
<
date
>05/17/15
date
>
build
>
<
build
>
<
version
>1.2.1
version
>
<
date
>05/15/15
date
>
build
>
product
>
products
>
I want to insert a new build node as the first child of the product node. When I use Create XML Node, the xml it inserts is valid, but the formatting is not very good:
<
products
>
<
product
name
=
"Bob"
>
<
build
><
version
>1.2.3
version
>
<
date
>05/20/15
date
>
build
><
build
>
<
version
>1.2.2
version
>
<
date
>05/17/15
date
>
build
>
<
build
>
<
version
>1.2.1
version
>
<
date
>05/15/15
date
>
build
>
product
>
products
>
Is there a way to control where it places newlines so I can maintain the original structure of the xml?