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?

Fellow Stranger
  • 32,129
  • 35
  • 168
  • 232

1 Answers1

3
my_string.include?("\n") ? simple_format(my_string) : my_string
Fellow Stranger
  • 32,129
  • 35
  • 168
  • 232