XML Remove Attributes (Legacy Format)

Description

Will remove all attributes from a node

Example

Base File


<root>
    <node attrVal="true">value</node>
</root>

Substitution


<Change>
    <XPath>/root/node</XPath>
    <RemoveCurrentAttributes />
</Change>

Output


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