diff options
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r-- | actionpack/lib/action_view/helpers/text_helper.rb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb index 599cd43721..3d479608f3 100644 --- a/actionpack/lib/action_view/helpers/text_helper.rb +++ b/actionpack/lib/action_view/helpers/text_helper.rb @@ -292,18 +292,15 @@ module ActionView # method does not remove the newlines from the +text+. # # ==== Examples - # my_text = """Here is some basic text... - # ...with a line break.""" + # my_text = "Here is some basic text...\n...with a line break." # # simple_format(my_text) - # # => "<p>Here is some basic text...<br />...with a line break.</p>" + # # => "<p>Here is some basic text...\n<br />...with a line break.</p>" # - # more_text = """We want to put a paragraph... - # - # ...right there.""" + # more_text = "We want to put a paragraph...\n\n...right there." # # simple_format(more_text) - # # => "<p>We want to put a paragraph...</p><p>...right there.</p>" + # # => "<p>We want to put a paragraph...</p>\n\n<p>...right there.</p>" def simple_format(text) content_tag 'p', text.to_s. gsub(/\r\n?/, "\n"). # \r\n and \r -> \n |