I have a fairly stand-alone page, and I'd like to make it as small as possible: inline minimized Javascript and minimized CSS, and then minimize the HTML itself. There's tools for each of these parts, but I'd like to avoid writing the glue for putting all of these together. Open source would be ideal.
feedback
|
|
try http://code.google.com/p/htmlcompressor/ EDIT Although doing it will make the code reading part a lot more complex and as a result, debugging will be a big pain. Do it only after you have all the other required optimization in place. | |||||
feedback
|
|
I'm not sure if you're going to find one tool that does all, but I've seen a few that do get a decent job done..... for me normally combined with other tools though. http://code.google.com/speed/page-speed/ Page speed is a firefox plugin, and is also an apache module
| |||
|
feedback
|
|
Check out the Pretty Diff tool at http://prettydiff.com/?m=minify&html You can also tell the tool to point to a given page with the s parameter, such as: http://prettydiff.com/?m=minify&html&s=http://stackoverflow.com/ | |||
|
feedback
|