Text not rendering as html

Hi,

I have set up TinyMCE as an inkine javascript text editor on my text
areas, but when I open show.html.erb it renders out, for example, bold
tags as “Get” in the actual browser as opposed to
“Get”.

Can someone please shed some light on this?

This is in my ‘notes’ controller…

def show
@note = Note.find(params[:id])

respond_to do |format|
  format.html # show.html.erb
  format.xml  { render :xml => @note }
end

end

Thanks in advanced.
C