Any online xml formatters? Ones that properly indent the tags.

Or any free Windows text editor which has a built-in xml formatter?

link|improve this question

1  
Pretty close: 'Is there a text editor that formats XML files nicely?' stackoverflow.com/questions/932283/… and 'Free XML Formatting tool', stackoverflow.com/questions/193728/free-xml-formatting-tool - except these don't cover the "online formatter" part. – Jonik Jun 24 '09 at 17:20
feedback

15 Answers

up vote 20 down vote accepted

I use Visual Studio. No, I'm not joking. It is in the Express-versions of Visual Studio and thus qualifies as free.

Pasting a XML-string into an XML-document under VS just indents it mighty fine. As needed by me sometimes :)

link|improve this answer
4  
This isn't online, and VS is one of many that do this, it is way faster to format within the browser when working on webapplications. – kr. Mar 21 '10 at 8:27
feedback

This should do the trick.

http://www.shell-tools.net/index.php?op=xml_format

link|improve this answer
2  
Looks to me like this is the only good answer to the original question. Thanks kAra. – MikeNereson Aug 5 '09 at 15:58
That did the trick, thanks! – Virat Kadaru Nov 2 '09 at 17:39
This one currently has a problem if you have encoded entities in your input. with this input: <xml><someval>Test &lt;code&gt; value</someval></xml>, the output includes the line <someval>Test <code> value</someval>. (Note that the &lt; has been incorrectly decoded into <, resulting in an invalid document. – Kip Feb 23 '10 at 15:17
run escaped strings though this online tool to fix. This is a common problem with working with URLs and URL type data meyerweb.com/eric/tools/dencoder – kr. Mar 21 '10 at 8:28
1  
didn't work for me: the input <a><b xsi:nil="true" /></a> returned <a> <b nil="true"/> </a> and an error: /var/tmp/FOOtAczDO:1: namespace error : Namespace prefix xsi for nil on b is not defined --> this tool seems to do more than just formatting which is at least not what I expected – Oliver May 13 '11 at 18:46
show 6 more comments
feedback

I wrote one a while back for fun: http://aaronkarp.com/prettyXML/

link|improve this answer
6  
this is the only online one from this thread which worked perfectly for me, thanks! – dain Feb 1 '10 at 10:58
@Aaron: any chance you could put the output in an uneditable textarea? that would make it easier to select all without getting the page header too. thanks! – Kip Feb 23 '10 at 15:25
This is getting bookmarked. Thanks! – Thomas Sidoti Mar 1 '10 at 21:39
Unfortunately comments mess up the indentation... – thSoft Jun 24 '10 at 0:00
Saved me a ton of time. Thanks! – Sam Soffes Nov 15 '10 at 16:48
show 3 more comments
feedback

Or you can use http://xmltoolbox.appspot.com

Its a free online xml formatter.

It has a few other features to.

  1. Search tags by tagname.
  2. Automatic xpath generator.

Greetings. Ole Bille. (Creator of the site.)

link|improve this answer
feedback

XML Notepad 2007

  • Tree View synchronized with Node Text View for quick editing of node names and values.

  • Incremental search (Ctrl+I) in both tree and text views, so as you type it navigates to matching nodes.

  • Cut/copy/paste with full namespace support.

  • Drag/drop support for easy manipulation of the tree, even across different instances of XML Notepad and from the file system.

  • Infinite undo/redo for all edit operations.

  • In place popup multi-line editing of large text node values.

  • Configurable fonts and colors via the options dialog.

  • Full find/replace dialog with support for regex and XPath.

  • Good performance on large XML documents, loading a 3mb document in about one second.

  • Instant XML schema validation while you edit with errors and warnings shown in the task list window.

  • Intellisense based on expected elements and attributes and enumerated simple type values.

  • Support for custom editors for date, dateTime and time datatypes and other types like color.

  • Handy nudge tool bar buttons for quick movement of nodes up and down the tree.

  • Inplace HTML viewer for processing xml-stylesheet processing instructions.

  • Built-in XML Diff tool.

  • Support for XInclude

  • Dynamic help from XSD annotations.

  • Goto definition to navigate includes and XSD schema information.

link|improve this answer
feedback

Online XML formatter http://x01.co.uk/tools/online-xml-formatter

link|improve this answer
this is the best one i've found on this list, use it all the time. – Kip Feb 21 '11 at 14:28
doesn't format a yahoo rss feed! – binnyb Feb 21 '11 at 20:01
feedback

Vim has an freely downloadable script which might serve your purpose. Oh, and it's a damned fine text editor, too!

link|improve this answer
You'll need "xmllint" in addition as for this as well. xmlsoft.org/xmllint.html – monojohnny Dec 30 '09 at 16:59
feedback

My new favorite text editor under windows is jEdit. It has a plug-in based architecture, and I believe XML indentation requires a plug-in, but plug-in installation is a breeze. Check it out. It also does indentation and syntax highlighting for countless other languages.

link|improve this answer
feedback

My favourite freeware editor - PSPad - does that just fine. It even includes Tidy, so you can specify exactly how you want your XML to be formatted.

link|improve this answer
feedback

I just came across this post and thought someone may be interested. There is a silverlight xml formatter here at http://www.bytechaser.com/en/resources/tp9h7nivzr/free-online-xml-formatting-tool.aspx It can take a few seconds to load initially but all you do is paste in the xml and set the indentation. I use it for formatting SSIS config files.

link|improve this answer
feedback

please check this site. it not only has xml formatter also has json formatter. http://www.shell-tools.net/

link|improve this answer
feedback

http://xmltoolbox.appspot.com worked for me but most of the others had trouble dealing with inline comments.

link|improve this answer
feedback

You should try Pretty Diff. It can handle XML, JSTL, PHP, ASP, and so forth and it is written entirely in JavaScript.

http://prettydiff.com/

link|improve this answer
feedback

You can try OT's XML formatter, i tried it before, it is so basic but will do the work

http://xml.online-toolz.com/tools/xml-formatter.php

link|improve this answer
feedback

The online XML Editor,XmlGrid.net has an option to display XML file in a nice text view in which the XML code is indented according to the elements level in the DOM tree. You just load you XML file or paste it to the input box. The default view is GridView, so you need to switch to TextView to see the indented source code. Here is the URL for XmlGrid: http://xmlgrid.net

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.