views:

45

answers:

1

I have a Rails app (blog) that I am creating. Very basic stuff. In my content area I have a text area for the content of the post. I am needing to include some html in the text area (links, formating, etc).

<%= f.text_area :content %>

Is there another tag that I can use instead of text_area, that will allow me to do this?

A: 

text_area_tag is probably what you want.

x1a4
I think you are correct. Now if I can get it to work.
Norm
I did get text_area_tag to work, however that still did not allow me to enter html in the text area.
Norm