Skip to main content

XML elements writer

Generate an XML file on which you can append multiple XML node at the given XML path.

Example
<!-- 1st XML node -->
<hello population="6bn">World</hello>

<!-- 2nd XML node -->
<hello population="70m">France</hello>


<!-- Configuration -->
XML path: data

<!-- Output -->
<data>
<hello population="6bn">World</hello>
<hello population="70m">France</hello>
</data>

Parameters

XML pathREQUIRED

The XML path where to append the XML nodes.

Pretty

If checked, the XML file will be formatted with indentation and lines.

Input

XML NodeREQUIRED

All the XML nodes to append to the XML file.