XML Formatter
Format and beautify XML documents with proper indentation and structure.
Input XML
Formatted XML
<?xml version="1.0"?>
<catalog>
<book id="1">
<title>XML Developer's Guide
</title>
<author>John Doe
</author>
<price>44.95
</price>
</book>
<book id="2">
<title>Advanced XML
</title>
<author>Jane Smith
</author>
<price>39.95
</price>
</book>
</catalog>Minified XML
<?xml version="1.0"?><catalog><book id="1"><title>XML Developer's Guide</title><author>John Doe</author><price>44.95</price></book><book id="2"><title>Advanced XML</title><author>Jane Smith</author><price>39.95</price></book></catalog>Tip: Well-formatted XML is easier to read and debug. Minified XML reduces file size for production use.