在 Rails 中去除不需要的 html 的最佳方法是什么?
我正在制作一个相当基本的 Rails 应用程序,我想知道从文本字段中删除不需要的 html 的最佳方法是什么(基本上,我想要保留的只是链接和不超过 2 个换行符)。
目前,我正在剥离所有 html 并使用 simpleformat,因为它似乎比使用 RDiscount 和 Markdown/Textile 的开销更少,但这并不是一个真正理想的解决方案。
I'm making a fairly basic rails app and I was wondering what's the best way to strip undesirable html from text field (basically, all I'm looking to preserve are links and no more than 2 linebreaks).
Currently, I'm stripping all html and using simpleformat, since it seems to be less overhead than using RDiscount and Markdown/Textile, but this is not really an ideal solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能是
清理
助手。模块
ActionView::Helpers::SanitizeHelper
Probably the
sanitize
helper.Module
ActionView::Helpers::SanitizeHelper
另一种选择是消毒宝石。
http://wonko.com/post/sanitize
Another option is Sanitize gem.
http://wonko.com/post/sanitize