From 4d007ce65a950a126590e9bbaca821a356ef9a6f Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Thu, 27 Apr 2006 17:38:20 +0000 Subject: Fix text_helper.rb documentation rendering. Closes #4725. [Frederick Ros] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4289 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/text_helper.rb | 40 +++++++++++------------ 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'actionpack/lib/action_view/helpers/text_helper.rb') diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb index 065f785f74..a777c64ecc 100644 --- a/actionpack/lib/action_view/helpers/text_helper.rb +++ b/actionpack/lib/action_view/helpers/text_helper.rb @@ -116,7 +116,7 @@ module ActionView end # Returns +text+ transformed into HTML using very simple formatting rules - # Surrounds paragraphs with <p> tags, and converts line breaks into <br /> + # Surrounds paragraphs with

tags, and converts line breaks into
# Two consecutive newlines(\n\n) are considered as a paragraph, one newline (\n) is # considered a linebreak, three or more consecutive newlines are turned into two newlines def simple_format(text) @@ -129,7 +129,7 @@ module ActionView end # Turns all urls and email addresses into clickable links. The +link+ parameter can limit what should be linked. - # Options are :all (default), :email_addresses, and :urls. + # Options are :all (default), :email_addresses, and :urls. # # Example: # auto_link("Go to http://www.rubyonrails.com and say hello to david@loudthinking.com") => @@ -235,28 +235,28 @@ module ActionView # array every time it is called. This can be used to alternate classes # for table rows: # - # <%- for item in @items do -%> - # "> - # ... use item ... - # - # <%- end -%> + # <%- for item in @items do -%> + # "> + # ... use item ... + # + # <%- end -%> # # You can use named cycles to prevent clashes in nested loops. You'll # have to reset the inner cycle, manually: # - # <%- for item in @items do -%> - # "row_class") - # - # <%- for value in item.values do -%> - # "colors") %>'"> - # item - # - # <%- end -%> - # <%- reset_cycle("colors") -%> - # - # - # <%- end -%> + # <%- for item in @items do -%> + # "row_class") + # + # <%- for value in item.values do -%> + # "colors") %>'"> + # item + # + # <%- end -%> + # <%- reset_cycle("colors") -%> + # + # + # <%- end -%> def cycle(first_value, *values) if (values.last.instance_of? Hash) params = values.pop -- cgit v1.2.3