Formatting in ruby

Hi,
I am changed simple format method and added first line code for
replacing spaces
for formatting in this it works but other code means new line
paragraphs are not working?
I want a such method which format all white spaces, new line,
paragraphs.
how it possible in ruby?

example:

def my_format(text)
text.gsub!(/(’ ')/, " ")
text.gsub!(/(\r\n|\n|\r)/, “\n”) # lets make them newlines
crossplatform
text.gsub!(/\n\n+/, “\n\n”) # zap dupes
text.gsub!(/\n\n/, ‘

\0

’) # turn two newlines into paragraph
text.gsub!(/([^\n])(\n)([^\n])/, ‘\1\2
\3’) # turn single
newline into
content_tag(“p”, text)
end

You haven’t what your target format is. What do you want to replace all
the white space with?

Sunny B. wrote:

Hi,
I am changed simple format method and added first line code for
replacing spaces
for formatting in this it works but other code means new line
paragraphs are not working?
I want a such method which format all white spaces, new line,
paragraphs.