XML Append After (Legacy Format)

Description

Will add the content as the sibling of the node in xPath

Example

Base File


<root>
    <node>value</node>
</root>

Substitution


<Change>
    <XPath>/root/node</XPath>
    <AppendAfter>
        <![CDATA[<node2>value2</node2>]]>
    </AppendAfter>
</Change>

Output


<root>
    <node>value</node>
    <node2>value2</node2>
</root>