How can I make simple_format not wrap the returned value in p tags?
simple_format "<span class="required">*</span>"
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...
2.1m questions
2.1m answers
60 comments
57.0k users