vote up 2 vote down star
1

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

flag

0% accept rate

4 Answers

vote up 1 vote down

To minify markup without corrupting the content use my markupmin.js tool. You can demo it integrated into my Pretty Diff tool. Even the HTML source of the Pretty Diff tool and the documentation are both minified with this tool.

http://mailmarkup.org/prettydiff/prettydiff.html
http://mailmarkup.org/prettydiff/markupmin.js

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

Consider HTML Tidy:

http://infohound.net/tidy/

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

link|flag

Your Answer

Get an OpenID
or

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