使用 Ruby 格式化 HTML 源
是否有任何 Ruby 库可用于格式化 HTML 源。我所说的格式化是指删除多余的空格、应用适当的缩进等。
我已经在使用 Hpricot 来解析 HTML。如果 Hpricot 能胜任这项工作就好了。但我不坚持使用 Hpricot 来进行格式化。
谢谢, 伊姆兰
Is there any Ruby library available to format the HTML source. By formatting I mean removing the extra spacing, apply proper indentation etc.
I am already using Hpricot for parsing HTML. It would be nice if Hpricot could do this job. But I am not stick with Hpricot for the formatting stuff.
Thanks,
Imran
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 HTML Tidy 库的 Ruby 界面。
Check out this Ruby interface to the HTML Tidy library.
额外的间距和格式在 HTML 中并不重要,因此无论格式和空白如何,浏览器都应该以相同的方式显示代码。
Extra spacing and formatting don't really matter in HTML, so regardless of the formatting and white space, the browser should display the code as the same.