Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone recommend an xml beautifier online, something just like jsonlint.org?

share|improve this question
This belongs on webapps. – Justin Dearing May 23 '11 at 1:05
unfortunately this topic has been closed, but I would like to recommend a really good XML beautifier: xmlbeautifier.com – Sk8erPeter Jul 26 '12 at 0:41
@Sk8erPeter Be carefull of that one because the data you send through is kept on the server. – Lyrion Oct 11 '12 at 14:33
@RafaelCelerier: hmm, I noticed the message "NOTE: do not submit documents with sensitive information - this is a server side tool. " - but why would they keep all the uploaded data? This would consume much-much resources. – Sk8erPeter Oct 11 '12 at 15:45

closed as off topic by Will May 23 '11 at 13:17

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 24 down vote accepted

http://www.thedeveloperday.com/tools/beautyXML/

I have found this tool to be quite useful - in fact, when I search SO for one, I find this post :) how awesome is that!

One drawback to this is that it will send your input over the wire as opposed to doing it locally. This normally isn't an issue (and might be better for large blocks of text that Javascript would typically bomb out on. But if your data is sensitive in nature, you might ant to look for another solution.

share|improve this answer
1  
I'm actually glad I just did that. I run into this problem more often than I'd like to admit. – corsiKa Jul 1 '10 at 20:01
1  
+1 nice, I have been looking for one of these too. – northpole Jul 1 '10 at 20:10

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/?m=beautify&html

share|improve this answer
this one worked better for me than the two above. My XML uses a lot of namespaces, which the two above seem to not recognize. – Kirill Yunussov Nov 20 '12 at 16:26
This one works better with multiple CDATA section than this one thedeveloperday.com/tools/beautyXML – voxenv Feb 22 at 8:44

Pretty-print.org is my personal favourite: www.pretty-print.org. It can handle also JSON, Javascript, C#, Java and many others.

share|improve this answer
Note: this one does not keep CDATA for XML. – dalbaeb Dec 6 '11 at 16:22

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