One of my model objects has a \'text\' column that contains the full HTML of a web page.
I\'d like to write a controller action that simply returns this HTML direc
Its works for me
def show @model_object = ModelObject.find(params[:id]) respond_to do |format| format.html { render :inline => "<%== @model_object['html'] %>" } end end