Single-line XML to indented document
A compact catalog document is expanded with each nested book element, and each text node, indented one level deeper than its parent.
<?xml version="1.0"?><catalog><book id="1"><title>Guide</title><author>Ada</author></book></catalog><?xml version="1.0"?>
<catalog>
<book id="1">
<title>
Guide
</title>
<author>
Ada
</author>
</book>
</catalog>