Minify XML Online — Free XML Compressor

Minify XML documents instantly — compress configs and feeds before deploy. FastMinify preserves CDATA sections and processing instructions while everything stays in your browser.

Loading…
XML Minification
Minify XML online. Compress configs and feeds while preserving CDATA and processing instructions.

Features

Remove whitespace, comments and unnecessary formatting from XML documents to reduce file size while preserving CDATA sections and processing instructions.

Minify XML

Remove whitespace, comments and unnecessary formatting from XML documents to reduce file size while preserving CDATA sections and processing instructions.

Basic example

Input XML

<?xml version="1.0" encoding="UTF-8"?> <root> <item id="1"> <name>Product</name> <price>29.99</price> </item> <item id="2"> <name>Service</name> <price>49.99</price> </item> </root>

Minified XML

<?xml version="1.0" encoding="UTF-8"?><root><item id="1"><name>Product</name><price>29.99</price></item><item id="2"><name>Service</name><price>49.99</price></item></root>

Minification options

Remove Comments
Removes all XML comments (<!-- ... -->) from code

Comparison with/without option:

Original code
<root> <!-- This is a comment --> <item>Content</item> <!-- Another comment --> </root>
With removeComments: true
<root><item>Content</item></root>
With removeComments: false
<root><!-- This is a comment --><item>Content</item><!-- Another comment --></root>
Collapse Whitespace
Collapses multiple whitespace characters into single spaces and removes spaces between XML tags. Preserves CDATA sections and processing instructions.

Comparison with/without option:

Original code
<root> <item> Multiple spaces </item> <data> Text </data> </root>
With collapseWhitespace: true
<root><item> Multiple spaces </item><data> Text </data></root>
With collapseWhitespace: false
<root><item> Multiple spaces </item><data> Text </data></root>

See Beautify indentation options →

XML conversion helpers now have dedicated URLs

Use standalone flows for interoperability: jump to XML → JSON, XML → YAML or XML → CSV while keeping XML minification and beautification centered on FastMinify’s primary XML formatter.

XML Formatting and Beautification

Proper XML formatting makes documents easier to read, debug and maintain. Our formatter adds consistent indentation, aligns attributes, and organizes elements hierarchically. This is especially useful for configuration files (web.xml, pom.xml), SOAP responses, and XML data feeds.

Minifying XML Sitemaps

XML sitemaps can grow large for sites with thousands of pages. Minifying your sitemap.xml removes unnecessary whitespace and comments, reducing file size and improving crawl efficiency. Our tool handles sitemap-specific elements like loc, lastmod, changefreq and priority correctly.

Frequently Asked Questions — Minify

Everything about minification

Why minify XML?

XML minification removes whitespace and comments while preserving CDATA sections and processing instructions.

Need to unminify XML?

Use our XML unminifier for audits and debugging.

Need to beautify XML?

Use our XML beautifier for consistent indentation.

Looking for converters, encoders, formatters, and minifiers in one place? Developer tools hub Open the curated developer tools catalogue.

Other actions for this language