配置 tidy 来转义未知的 xml 标签
我正在使用 tidy 使用户输入的 HTML 格式良好,并且我已将 tidy 配置为仅接受少数 html 标签。有没有一种方法可以告诉 tidy 对未知的 xml 标签进行转义序列。下面给出了示例输入和预期输出
- 输入::
这是一段
<未知标签>未知标签中的文本
预期结果::
这是一个段落
<***未知标签*>未知标签中的文本< /未知标签>**
此致, 克沙夫
I am using tidy to make HTML entered by the user well-formed and i have configured tidy to accept only few html tags. Is there a way i can tell tidy to escape sequence the xml tags that are not known. Example input and the expected output are given below-
Input::
<div>
<p>this is a paragraph</p>
<unknown-tag>text in unknown tag</unknown-tag>
<div>
Expected out::
<div>
<p>this is a paragraph</p>
<***unknown-tag*>text in unknown tag</unknown-tag>**
<div>
Best Regards,
Keshav
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也已将这个问题发布到整洁论坛,但目前似乎还没有办法做到这一点。
BR,
克沙夫
i have also posted this question to tidy forum's and seems there is not way as of now to do this.
BR,
Keshav