xml minifier verdens enkleste xml-værktøj
Gratis online XML minifier. Bare indlæs din XML, og den bliver automatisk minificeret.
xml minifier værktøj hvad er en xml minifier?
Dette værktøj komprimerer XML-dokumenter (Extensible Markup Language). Det fjerner indrykning, sletter mellemrum og tabulatorer for at få XML til at tage mindst plads.
Eksempel på XML Minifer
Før 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>
Efter 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>