HTML Tidy - 如果缺少引号,则不会发出警告
如果属性值周围缺少引号,是否可以设置任何选项来使整洁地向我显示警告?目前我运行 tidy 如下:
tidy -xml -e test.html
在 test.html
内:
<p id=foobar></p>
没有警告,但实际上 XML 需要引号。我不需要更正的输出。我想使用 -e
选项。
Windows 版 HTML Tidy 于 2009 年 3 月 25 日发布
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tidy 不会抛出有关缺少引号的属性的警告,因为不带空格的属性值在 HTML 中有效(尽管在 XML 中无效,正如您所指出的)。我已经检查了文档此处和此处 不幸的是,我没有看到任何对配置选项或设置的引用,这些配置选项或设置可以产生您想要的结果。
Tidy will not throw warnings about attributes missing quotes as attribute values without spaces are valid in HTML (although not in XML, as you point out). I've checked the documentation here and here and unfortunately, I don't see any references to configuration options or settings that would yield the results you want.