XML Remove Attributes

Description

Will remove all attributes from a node

Example

Base File


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

Substitution


<Change type="RemoveCurrentAttributes" xPath="/root/node" />

Output


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