What's the best way to pretty-print xml in JavaScript? I obtain xml content through ajax call and before displaying this request in textarea i want to format it so it looks nice to the eye :)

link|improve this question

78% accept rate
Making XML look nice to the eye would be a magic trick! – Josh Stodola Jul 27 '09 at 23:04
feedback

6 Answers

up vote 3 down vote accepted

This does not take care of any indenting, but helps to encode the XML for use within <pre> or <textarea> tags:

/* hack to encode HTML entities */
var d = document.createElement('div'); 
var t = document.createTextNode(myXml); 
d.appendChild(t);
document.write('<pre>' + d.innerHTML + '</pre>');

And if, instead of a <textarea>, you'd want highlighting and the nodes to be collapsable/expandable, then see Displaying XML in Chrome Browser on Super User.

link|improve this answer
feedback

This is not the best way to do this but you can get the xml as text and use RegExp to find and replace '>' with tabs according to the depth of the node and breaklines but I don't really know RegExp very well, sorry.

You can also use XSLT and transform it using javascript.
Check this link and take a look at this tutorial.

link|improve this answer
The links are good, especially the first, "Pretty XML tree view for Opera" (though in my Safari and Firefox the clicking to collapse or expand elements does not work out of the box). – Arjan Jul 28 '09 at 7:28
feedback

I agree with Arjan on utilizing the <pre> tags. I was trying to decipher 'ugly' xml code in my html output before I tried this out about 2 days ago. Makes life much easier and keeps you sane.

link|improve this answer
1  
+1 to get you some reputation to allow you to comment... – Arjan Jul 28 '09 at 6:53
thanks =) it's tough to get going here – Allen Liu Jul 28 '09 at 17:53
Well, I'm not sure we couldn't have lived without the answer even if it were a comment, but well... Deleting it now may also purge the upvote, so wait until you've got at least 60 reputation then. :-) – Arjan Jul 29 '09 at 8:11
feedback

Actually, whitespace matters in XML. So how would you define "pretty"?

link|improve this answer
By pretty i mean properly idented and one tag per line. – mgamer Jul 27 '09 at 10:40
You answer is incorrect IMHO. The RFC makes clear that there is a notion of insignificant whitespace e.g. that may be added for enhanced readability. It is for this reason tyhat the xml:space attribute exists; to allow the author to specify where their whitespace is definitely significant – Rob Levine Jul 27 '09 at 10:49
oops - meant to add url: w3.org/TR/REC-xml/#sec-white-space – Rob Levine Jul 27 '09 at 10:49
Correct. So, without an XSD (or DTD), all whitespace matters, right? Of course, in real life, whitespace that is not part of the content is most often insignificant (and parsers tend to be forgiving). I've seen a lot of actual data being changed for "readability" though. And thanks to Murphy, often not until some system was taken into production. ;-) – Arjan Jul 27 '09 at 11:28
feedback

Use prettydiff.com/markup_beauty.js. This is capable of supporting invalid markup, fragments, and JSTL code.

<c:out value="<strong>text</strong>"/>

You can demo that application using a web tool at prettydiff.com. Just choose the "beautify" and "markup" options.

It is important that you use a proper tool to beautify your XML and not arbitrarily rush the job. Otherwise you will add white space tokens where they were not intended and remove them where they were intended. To raw data this may be consequential, but to human consumable content this destroys the integrity of your code, especially with regard to recursion.

link|improve this answer
feedback

take a look at the vkBeautify.js plugin

http://www.eslinstructor.net/vkbeautify/

it is exactly what you need. it's written in plain javascript, less then 1.5K minified and very fast: takes less then 5 msec. to process 50K XML text.

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.