up vote 1 down vote favorite
share [g+] share [fb]

Here below the start of my menu_builder method in the applicationhelper (in the view: <%= menu_builder(@page); %>):

def menu_builder(page)
  items = [ "home", "faq", "store" ]
  content = ""
  items.each do |i|
    content << content_tag(:a, "#{i.capitalize}", :href => "/#{i}" )
  end
  return content
end

I would like to render links not tags. I should miss somthing here but I don't find..

Thanks for your help!

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can fix it like this:

def menu_builder(page)
  items = [ "home", "faq", "store" ]
  content = ""
  items.each do |i|
    content << content_tag(:a, "#{i.capitalize}", :href => "/#{i}" )
  end
  content.html_safe
end

Or modify your template like this:

<%= raw menu_builder %>

Use any.

link|improve this answer
:) Thanks so much!! – benoitr Sep 4 '10 at 10:53
feedback

Your Answer

 
or
required, but never shown

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