up vote 5 down vote favorite
2
share [g+] share [fb]

Is there an equivalent of Google's Closure Compiler for HTML minimizing?

link|improve this question

0% accept rate
feedback

5 Answers

I presume you mean the Closure compiler, which effectively compresses javascript. If you search the goog for "HTML Compressor", you will find a lot of options catering to individual needs.

link|improve this answer
feedback

Consider HTML Tidy:

http://infohound.net/tidy/

It's a free tool that does a great job.

link|improve this answer
feedback

I think you can try google's mod_pagespeed, which will minify the response content.

link|improve this answer
feedback

I am using Minify to trim and compress the html at runtime. The only requirements and setup are that you put Minify on your server and prepend the following code to the page.

<?php require $_SERVER['DOCUMENT_ROOT'] . '/min/pageBuffer.php'; ?>
<!-- html -->
link|improve this answer
feedback

I write a python script, replace all id and class name at pushlish. The script generate unique token for each class name and id, relpace the in both javascript,css and html template file. It workds greate for me

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.