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
ます。