Free XML Formatting tool - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T04:04:31Zhttp://stackoverflow.com/feeds/question/193728http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/193728/free-xml-formatting-tool7Free XML Formatting toolSaif Khan2008-10-11T05:56:06Z2009-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#1937440Answer by Jon Skeet for Free XML Formatting toolJon Skeet2008-10-11T06:12:54Z2008-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#1937451Answer by zoul for Free XML Formatting toolzoul2008-10-11T06:18:01Z2008-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#1937538Answer by Guy for Free XML Formatting toolGuy2008-10-11T06:30:37Z2008-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#1937563Answer by Kev for Free XML Formatting toolKev2008-10-11T06:33:38Z2008-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&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&displaylang=en</a></p>
http://stackoverflow.com/questions/193728/free-xml-formatting-tool/193767#1937675Answer by Ash for Free XML Formatting toolAsh2008-10-11T06:49:25Z2008-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#1939962Answer by Franci Penov for Free XML Formatting toolFranci Penov2008-10-11T11:47:41Z2008-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#1985111Answer by Seeker for Free XML Formatting toolSeeker2008-10-13T18:23:06Z2008-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&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#1985380Answer by Mihai Limbasan for Free XML Formatting toolMihai Limbasan2008-10-13T18:30:24Z2008-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#2166611Answer by JohnnySoftware for Free XML Formatting toolJohnnySoftware2008-10-19T16:54:45Z2008-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>