Free Online Tool XML Minify

Input data
bfotool loadding
Output data
bfotool loadding

xml minifier world's simplest xml tool

Free online XML minifier. Just load your XML and it will automatically get minified.

xml minifier tool what is a xml minifier?

This tool compresses XML (Extensible Markup Language) documents. It removes indentation, deletes spaces and tabs to make XML take least amount of space.

XML Minifer Example

Before Minify:

<?xml version="1.0" encoding="UTF-8" ?>
 <root>
     <row-0>
         <title>Json To Csv</title>
         <slug>json-to-csv</slug>
         <year>2019</year>
     </row-0>
     <row-1>
         <title>Json To Array</title>
         <slug>json-to-array</slug>
         <year>2019</year>
     </row-1>
     <row-2>
         <title>Json To Tsv</title>
         <slug>json-to-tsv</slug>
         <year>2019</year>
     </row-2>
 </root>

 After minify:

<?xml version="1.0" encoding="UTF-8" ?><root><row-0><title>Json To Csv</title><slug>json-to-csv</slug><year>2019</year></row-0><row-1><title>Json To Array</title><slug>json-to-array</slug><year>2019</year></row-1><row-2><title>Json To Tsv</title><slug>json-to-tsv</slug><year>2019</year></row-2></root>