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 :)
feedback
|
|
This does not take care of any indenting, but helps to encode the XML for use within
And if, instead of a | ||||
|
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. | ||||
feedback
|
|
I agree with Arjan on utilizing the | |||||||||
feedback
|
|
Actually, whitespace matters in XML. So how would you define "pretty"? | |||||||||
feedback
|
|
Use prettydiff.com/markup_beauty.js. This is capable of supporting invalid markup, fragments, and JSTL code.
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. | |||
|
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. | ||||
|
feedback
|