我有使用 simple_format 的字符串,所以它们周围总是有 p 标签。我有一些代码可以去除周围的 p 标签,但我知道必须有更好的方法。您将如何简化以下代码?
<% my_string = "something" %>
<% my_string = simple_format my_string %>
当然,my_string
最终以<p>something</p>
This removes the opening p tag.
<% my_string[0..2] = "" %>
This removes the closing p tag.
<% my_string.chop! %>
<% my_string.chop! %>
<% my_string.chop! %>
<% my_string.chop! %>
注意:我不想删除所有 p 标签,只删除simple_format
.