Ruby Forum Rails deployment > Text not rendering as html

Posted by Clinton Beattie (messismore)
on 26.07.2008 13:47
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 "<strong>Get</strong>" 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