Is there a javascript library that can make bad html readable?

For example:

<div><span></span></div>

into

<div>
  <span></span>
</div>
link|improve this question

2  
You may checkout this question: stackoverflow.com/questions/376373/… – Darin Dimitrov Jan 21 '11 at 10:29
Duplicate of stackoverflow.com/questions/376373/… as said Darin – Andry Jan 21 '11 at 10:33
alright everyone, flag to close! – Mark Jan 21 '11 at 11:03
feedback

2 Answers

If you use Firebug on FireFox, HTML is all laid out nicely in the HTML pane.

Depends if you want to reasd it, or save it in a readable form (which Firebug won't)

link|improve this answer
feedback

If you just want to ident your code, use your favorite ide. If it is eclipse, the shortcut is something like ctrl + shift + f

link|improve this answer
I'm pretty sure that @mark is looking for a JS library to format HTML in a web browser not a text editor. – Web_Designer Feb 11 at 5:40
feedback

Your Answer

 
or
required, but never shown

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