HtmlPurifier:删除不明确的空白?
是否可以使用 HTMLPurifier 从包含 html 的字符串中删除不明确的空格?我在文档中找不到任何相关内容。如果存在其他方法,我也持开放态度。
输入示例:
Test Line1
<p>
Test Line2</p>
<p>
Line 3</p>
最佳输出:
Test Line1<p>Test Line2</p><p>Line 3</p>
谢谢!!!!!!
Is it possible to remove ambiguous whitespace from a string containing html with HTMLPurifier? I wasn't able to find anything relevant in the documentation. I'm also open to other methods if they exist.
Example Input:
Test Line1
<p>
Test Line2</p>
<p>
Line 3</p>
Optimal Output:
Test Line1<p>Test Line2</p><p>Line 3</p>
Thanks!!!!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正则表达式有帮助吗?
Can regular expression help?