PHP Tidy 对注释进行编码
我正在使用 PHP tidy,并且遇到了一种情况,用户在 href 属性中放置了注释,如下所示:
<a href="<!-- Comment -->">Link</a>
当我通过 Tidy 传递它时,它返回:
<a href="<!-- Comment -->">Link</a>
我猜这是 Tidy 纠正此问题的方法?这是有道理的,但是除了不使用 Tidy 之外,还有其他方法可以阻止这种行为吗?
我尝试打开/关闭配置选项:literal-attributes
、fix-bad-comments
和 preserve-entities
。但这些似乎并不能关闭这种效果
I am making use of PHP tidy and I've been given a situation where a user has placed a comment within a href attribute, like so:
<a href="<!-- Comment -->">Link</a>
When I pass it through Tidy, it returns:
<a href="<!-- Comment -->">Link</a>
I am guessing this is Tidy's way of correcting this? It makes sense, but is there a way to stop this behaviour, other than not using Tidy?!
I have tried switching on/off the configuration options: literal-attributes
, fix-bad-comments
and preserve-entities
. But these do not seem to turn off this effect
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在通过 PHP tidy 传递 html 之前,查找注释(也许是正则表达式?)并以某种方式对它们进行编码。然后使用 tidy 后取消编码。
如何对评论进行编码的一个示例是将 href 设置为
comment://n
,其中 n 是存储在数组中的原始评论文本的索引。Before passing the html through PHP tidy, look for comments (regexp, perhaps?) and encode them somehow. Then unencode after using tidy.
One example of how to encode comments would be to set the href as
comment://n
, where n is the index of the original comment text, which is stored in an array.我什至认为这不是有效的 HTML。您不能将标签放在属性值内。
I don't think this is valid HTML even. You can't put tags inside attribute values.