相当于“Google Closure Compiler”对于 HTML?
是否有相当于 Google 的 Closure Compiler 的 HTML 最小化工具?
Is there an equivalent of Google's Closure Compiler for HTML minimizing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我猜你指的是 Closure 编译器,它可以有效地压缩 javascript。如果您在谷歌中搜索“HTML 压缩器”,您会发现很多可以满足个人需求的选项。
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.
考虑 HTML Tidy:
http://infohound.net/tidy/
这是一个免费工具,效果很好。
Consider HTML Tidy:
http://infohound.net/tidy/
It's a free tool that does a great job.
我认为你可以尝试谷歌的mod_pagespeed,这将缩小响应内容。
I think you can try google's mod_pagespeed, which will minify the response content.
我写了一个python脚本,替换了pushlish中的所有id和类名。该脚本为每个类名和 id 生成唯一的标记,并在 javascript、css 和 html 模板文件中替换它们。对我来说效果很好
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
我正在使用 Minify 在运行时修剪和压缩 html。唯一的要求和设置是您将 Minify 放在您的服务器上,并在前面添加以下代码页面。
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.