我有这个 html 文本:
<p> I'm a html text</p>
为了在我的网页上显示它,我首先对其进行消毒并删除标签:
sanitize(best_practice.milestone.description, :tags=>[])
然后我显示确定,
已删除。
但是,如果我决定像这样截断文本:
sanitize(best_practice.milestone.description, :tags=>[]).truncate(30)
在我的
网页上再次可见。所有特殊字符实际上都是可见的。
我该怎么做才能避免截断以使这些特殊字符可见?