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/, '</p>\0<p>') # turn two newlines into paragraph
text.gsub!(/([^\n])(\n)([^\n])/, '\1\2<br />\3') # turn single
newline into
content_tag("p", text)
end
on 04.06.2008 09:41
on 25.08.2008 08:13
You haven't what your target format is. What do you want to replace all the white space with? Sunny Bogawat 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.