Free XML Formatting tool - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:04:31Z http://stackoverflow.com/feeds/question/193728 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/193728/free-xml-formatting-tool 7 Free XML Formatting tool Saif Khan 2008-10-11T05:56:06Z 2009-06-24T17:23:07Z <p>Hi, Is there a free XML formatting (indent) tool available where I can past an XML string and have it formatted so I can read the XML document correctly?</p> <p>Thanks</p> <p>Edit ~ I am using XML Notepad on Windows XP.</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/193744#193744 0 Answer by Jon Skeet for Free XML Formatting tool Jon Skeet 2008-10-11T06:12:54Z 2008-10-11T06:12:54Z <p>What platform are you on? What text editor are you already using? Most decent text editors either support this out of the box or have add-ons available.</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/193745#193745 1 Answer by zoul for Free XML Formatting tool zoul 2008-10-11T06:18:01Z 2008-10-11T06:18:01Z <p><a href="http://xmlsoft.org/xmllint.html" rel="nofollow">xmllint</a> --format</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/193753#193753 8 Answer by Guy for Free XML Formatting tool Guy 2008-10-11T06:30:37Z 2008-10-11T06:30:37Z <p>I believe that <a href="http://notepad-plus.sourceforge.net/" rel="nofollow">Notepad++</a> has this feature.</p> <p>Notepad++ menu: TextFX -> HTML Tidy -> Tidy: Reindent XML</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/193756#193756 3 Answer by Kev for Free XML Formatting tool Kev 2008-10-11T06:33:38Z 2008-10-11T06:33:38Z <p>If you're using Windows take a look at Xml Notepad:</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa905339.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa905339.aspx</a></p> <p>Download from:</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&amp;displaylang=en</a></p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/193767#193767 5 Answer by Ash for Free XML Formatting tool Ash 2008-10-11T06:49:25Z 2008-10-11T06:49:25Z <p><a href="http://www.firstobject.com/dn_editor.htm" rel="nofollow">FirstObject XML editor</a> is a great little free XML editor tool. Open/paste your XML into it and press F8 to indent.</p> <p>It looks simple, however it contains a custom written XML parser written in C++ that allows it to work with <em>very large</em> XML files easily (unlike some expensive "espionage" related tools I've used).</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/193996#193996 2 Answer by Franci Penov for Free XML Formatting tool Franci Penov 2008-10-11T11:47:41Z 2008-10-11T11:47:41Z <p>You can open the XML file in any Visual Studio Express product and the press Ctrl+A, Ctrl+K, Ctrl+F to get it nicely formatted.</p> <p>Hey, it's free and it's a tool, so it fits the question. :-)</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/198511#198511 1 Answer by Seeker for Free XML Formatting tool Seeker 2008-10-13T18:23:06Z 2008-10-13T18:23:06Z <p>If you use Notepad++, I would suggest installing the <a href="http://sourceforge.net/project/showfiles.php?group_id=189927&amp;package_id=264094" rel="nofollow">XML Tools</a> plugin. You can beautify any XML content (indentation and line breaks) or linarize it. Also you can (auto-)validate your file and apply XSL transformation to it.</p> <p>Download the latest zip and copy the extracted DLL to the plugins directory of your Notepad++ installation. Also, download the External libs and copy them to your %SystemRoot%\system32\ directory.</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/198538#198538 0 Answer by Mihai Limbasan for Free XML Formatting tool Mihai Limbasan 2008-10-13T18:30:24Z 2008-10-13T18:30:24Z <p>Not directly an answer, but good to know nevertheless: After indenting, please make sure that the parser(s) and application(s) which will subsequently process the formatted XML will not yield different results. <a href="http://xml.silmaril.ie/authors/whitespace/" rel="nofollow">White space is often significant in XML</a> and most conforming parsers bubble it up to the application.</p> http://stackoverflow.com/questions/193728/free-xml-formatting-tool/216661#216661 1 Answer by JohnnySoftware for Free XML Formatting tool JohnnySoftware 2008-10-19T16:54:45Z 2008-10-19T16:54:45Z <p>If you are a programmer, many XML parsing programming libraries will let you parse XML, then output it - and generating pretty printed, indented output <strong>is</strong> an output option.</p>