Hello, is it possible for me to manipulate XML through N8N?
I need to add and remove a tag in a file.
Example:
<libraryContent>
<libraryObject>
<name>xxxxxxx</name>
<version>111111</version>
<description>yyyyyyyy</description>
</libraryObject>
<lists>
<entry>
<string>aaaaa</string>
<list version="1111">
<description></description>
<content>
//ADD CONTENT HERE
</content>
</list>
</entry>
</lists>
</libraryContent>
In i have to add
<listEntry>
<entry>Test</entry>
<description>Test</description>
</listEntry>
and when necessary remove the <listEntry>