如何使用 HTMLpurifier 将某些属性列入白名单?
如何使用 HTMLpurifier 将某些属性列入白名单? 我希望 HTMLpurifier 删除所有其他不允许的属性。
How to whitelist just some attributes with HTMLpurifier?
I want HTMLpurifier to delete all the other, not allowed attributes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTML.AllowedAttributes。 请注意,当使用 HTML.AllowedAttributes 时,您还需要使用HTML.AllowedElements。 并且您可能需要添加更多内容< /a>. 例如
target=""
的AllowedFrameTargets
、AllowedRel
、AllowedRev
、EnableAttrID
等。 ..没有太多选择,但要彻底测试。HTML.AllowedAttributes. Note that when using HTML.AllowedAttributes, you need to also be using HTML.AllowedElements. And you'll probably need to add more as you go along. Like
AllowedFrameTargets
fortarget=""
,AllowedRel
,AllowedRev
,EnableAttrID
, ... Not much choice but testing thoroughly.