0

I have some strings that contain carriage return (new lines), and using the helper method simple_format works perfect for that.

Unfortunately though, now all strings get the wrapping tag and class defined with simple_format, and that creates unwanted styling for strings that don't contain carriage return.

Is there any way to get the benefits of simple_format only when needed?

4

1 回答 1

2
my_string.include?("\n") ? simple_format(my_string) : my_string
于 2014-10-23T14:48:31.557 回答