vote up 0 vote down star

Hi all,

I'd like to render multiline text in Rails, the action looks like:

def mutli_text
  render :text => 'Word1\nWord2'
end

and I'd expect the response to be :

Word1
Word2

unfortunatly I get Word1\nWord2

Any help would be appreciated

(The action must render a multiline response to get the autocomplete jquery plugin working)

flag

1 Answer

vote up 7 vote down check
"Word1\nWord2"

You have to use double quotes to be able to use escaped characters.

But if you want to have that actually be a line break in the browser, you need to make it an actual html tag.

'Word1<br/>Word2'

Or even:

"Word1<br/>\nWord2"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.