XML Prettify
Format and indent minified XML into clean, readable markup, live as you type.
<?xml version="1.0"?>
<note>
<to>Alice</to>
<from>Bob</from>
<body>Hi!</body>
</note>Re-indents XML based on tag nesting, live as you type. Runs entirely in your browser; nothing you type is sent anywhere.
What is XML Prettify?
Paste minified or single-line XML and get it reformatted into clean, indented markup instantly, based on tag nesting depth. Useful for making a single-line SOAP response, RSS feed, or config file readable before you review or edit it — the kind of file that's often minified in transit but painful to read that way. Formatting runs entirely in your browser.
FAQ
No — it re-indents based on tag structure but doesn't check for well-formedness issues beyond that. Use HTML Validator's balance-check approach as a rough proxy, or a dedicated XML validator for strict compliance checking.
Yes, use XML Minifier to strip whitespace back out.