Rails 3. simple_format do not wrap result in paragraph tags

前端 未结 3 1231
忘了有多久
忘了有多久 2020-12-20 12:28

How can I make simple_format not wrap the returned value in p tags?

simple_format \"*\"

3条回答
  •  天涯浪人
    2020-12-20 13:17

    Unfortunately -- you can't. If you check out the source at http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#method-i-simple_format you'll see that the p tags are wrapped around the content unconditionally.

    You could create a helper that uses the simple_format code, but modify it to not include the p tags...

提交回复
热议问题