Wanted

A command line HTML5 beautifier running under Linux.

Input

Garbled, ugly HTML5 code. Possibly the result of multiple templates. You don't love it, it doesn't love you.

Output

Pure beauty. The code is nicely indented, has enough line breaks, cares for it's whitespace. Rather than viewing it in a webbrowser, you would like to display the code on your website directly.

Suspects

  • tidy does too much (heck, it alters my doctype!), and it doesn't work well with HTML5. Maybe there is a way to make it cooperate and not alter anything?
  • vim does too little. It only indents. I want the program to add and remove line breaks, and to play with the whitespace inside of tags.

DEAD OR ALIVE!

link|improve this question

Shouldn't this be a superuser question? – Jonno_FTW Apr 17 '10 at 8:23
Maybe you're right. Could someone move the question there, please? – blinry Apr 17 '10 at 10:07
7  
I'd say you have the right site for this. Not sure how many people on SU actually use HTML, much less HTML5. – Tim Post Apr 30 '10 at 14:17
feedback

closed as not constructive by Kev Jan 16 at 16:35

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

7 Answers

up vote 9 down vote accepted

HTML Tidy has been forked by the w3c and now has support for HTML5 validation.

https://github.com/w3c/tidy-html5

link|improve this answer
feedback
up vote 15 down vote
+100

I suspect tidy can be made to work with the right command-line parameters.

http://tidy.sourceforge.net/docs/quickref.html

You can specify an arbitrary doctype and add new block, inline, and empty tags, and turn on and off lots of tidy's cleaning options.

Depending on what you want it to "beautify" you can probably get decent results. It probably won't be able to do some of the more advanced things like rewriting the html content to eliminate spurious elements or combining them, if it doesn't recognize them.

link|improve this answer
10  
At a rough guess, how about tidy -as-xhtml --input-xml --tidy-mark no -indent --indent-spaces 4 -wrap 0 --new-blocklevel-tags article,header,footer --new-inline-tags video,audio,canvas,ruby,rt,rp --doctype "<!DOCTYPE HTML>" --break-before-br yes --sort-attributes alpha --vertical-space yes (disclaimer - I've not used html5, and I've only copied a few new tags from w3schools.com/html5/html5_reference.asp into the list by guessing which were block/inline, so please adjust as appropriate.) – Stobor May 6 '10 at 0:56
This seems to be the best option. Kudos to Stobor, too! – blinry May 6 '10 at 20:45
This is a good start, but it needs so much more. E.g. new input element attributes / values (type="date"). – dave1010 Jan 20 '11 at 11:04
1  
i had trouble with 2 of the options here. --doctype "<!DOCTYPE HTML>" and --sort-attributes alpha would not work for some reason – Ankur Aug 3 '11 at 2:08
feedback

Copied from a live website I did using HTML5 that is validated as proper HTML5 on all pages thanks to this snippet (PHP in this case but the options and logic is the same for any language used):

    $options = array(
        'hide-comments' => true,
        'tidy-mark' => false,
        'indent' => true,
        'indent-spaces' => 4,
        'new-blocklevel-tags' => 'article,header,footer,section,nav',
        'new-inline-tags' => 'video,audio,canvas,ruby,rt,rp',
        'doctype' => '<!DOCTYPE HTML>',
        'sort-attributes' => 'alpha',
        'vertical-space' => false,
        'output-xhtml' => true,
        'wrap' => 180,
        'wrap-attributes' => false,
        'break-before-br' => false,
    );

    $buffer = tidy_parse_string($buffer, $options, 'utf8');
    tidy_clean_repair($buffer);
    // Fix a tidy doctype bug
    $buffer = str_replace('<html lang="en" xmlns="http://www.w3.org/1999/xhtml">', '<!DOCTYPE HTML>', $buffer);
link|improve this answer
feedback

If you use Haml as your nanoc-filter, your html will automatically be pretty-printed. You can set html5 output as an option.

link|improve this answer
feedback

IMHO fot the html code the "Aptana" is so good. And the "Komodo editor" ;-)

link|improve this answer
That's no command line program, either. – blinry Apr 17 '10 at 10:12
feedback

Notepad++ has a HTML tidying facility that is pretty good.

link|improve this answer
That's no command line program. – blinry Apr 17 '10 at 10:11
feedback

You can use this script for vim: http://vim.wikia.com/wiki/Better_indent_support_for_php_with_html

tip via: http://stackoverflow.com/questions/459478/correct-indentation-of-html-and-php-using-vim

link|improve this answer
I wrote in the question that vim does to little for me. It only indents. – blinry Apr 20 '10 at 9:43
feedback

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