When to use XML Formatter
Your CI pipeline is rejecting a sitemap.xml with a parse error at byte 8432, and the file is a single line of concatenated tags with no indentation. Paste it here and the browser's DOMParser reformats it into a nested, indented tree and flags the exact unclosed tag or bad attribute that's causing the failure. Also useful when you pull a SOAP response from Wireshark or a log file, or when a vendor exports config data as a single-line XML blob that's impossible to diff. Nothing leaves your machine — the DOMParser runs in your tab, so internal SOAP credentials and private API payloads stay off any outside server. Fix the structure, copy it back.
- Debug a sitemap.xml rejected by Google Search Console
- Read a SOAP response from a legacy payment gateway
- Inspect an RSS feed before parsing it in your script