PHP Tidy 对注释进行编码

发布于 2024-12-02 06:26:19 字数 449 浏览 1 评论 0原文

我正在使用 PHP tidy,并且遇到了一种情况,用户在 href 属性中放置了注释,如下所示:

<a href="<!-- Comment -->">Link</a>

当我通过 Tidy 传递它时,它返回:

<a href="&lt;!-- Comment --&gt;">Link</a>

我猜这是 Tidy 纠正此问题的方法?这是有道理的,但是除了不使用 Tidy 之外,还有其他方法可以阻止这种行为吗?

我尝试打开/关闭配置选项:literal-attributesfix-bad-commentspreserve-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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

剩余の解释 2024-12-09 06:26:20

在通过 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.

囍笑 2024-12-09 06:26:19

我什至认为这不是有效的 HTML。您不能将标签放在属性值内。

I don't think this is valid HTML even. You can't put tags inside attribute values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文