I'm looking for an online tool that can pretty print my mark up. Something that will indent properly, nest correctly, etc. The mark up will be valid XHTML; I just need it to look pretty. Suggestions?

link|improve this question

A Google search for your question title reveals several sites that do what you ask. – Michael Mior Jul 11 '11 at 0:23
feedback

3 Answers

up vote 2 down vote accepted

Hard to go wrong with HTML Tidy Online; it does everything you've asked.

link|improve this answer
feedback

Try http://prettydiff.com/?m=beautify&html

It can beautify any kind of markup language delimited by angle brackets if you remove the html parameter from the address above. It can also beautify multi-dimensional tags that may be used in server-side tag libraries such as, JSTL:

<c:out value="<strong>some content</strong>"/>

It will also beautify the JavaScript if contained by a script tag that either has no type attribute or a type attribute with one of the various JavaScript MIME types. It beautify CSS if contained in a style tag with no type attribute or a type attribute containing the value: text/css.

link|improve this answer
Pretty diff is better because it does not trim or insert anything – Whitecat Apr 12 at 21:03
feedback

jsbeautifier does a fair job

http://jsbeautifier.org/

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.