Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a simple menu and I came across this problem: HAML keeps escaping my links to html entities. I have a helper that is supposed to generate a menu:

def buildMainMenu(file=Rails.root.join("config","menu.yaml"))
    ... some operations ...

    link = url_for par.merge({:controller=>mitem["controller"], :action=>mitem["action"]})

    ... some more operations yay ...

    haml_tag :a, mitem["label"], :href=>link 
end

par is {"testPARAM1"=>"testVAL1","testPARAM2"=>"testVAL2"}

Sadly the output is

<a href='/test/test1?testPARAM1=testVAL1&amp;testPARAM2=testVAL2'>Test2</a>

I've looked for a while now and I can't seem to find how to force HAML to NOT escape my strings :(

share|improve this question
where is this function, in a helper or somewhere else? – David Lesches Aug 8 '12 at 1:39
@DavidLesches: yes this function is in the main application helper (/app/helpers/application_helper.rb) – Bart Platak Aug 8 '12 at 1:40

2 Answers

I know this isn't 100% what you are looking for, but personally I would refactor this - this is going to cause you headaches and anyway, rendering html within a helper isn't ideal at all.

I'd change the helper function to get your YAML file, or whatever is going on there, and output a final array with the correct items.

Make a _header.html.haml partial (put it in a directory 'shared'), the partial will call the helper function, get the array, and since you are in a view you can loop with normal techniques, and use link_to, etc, and all your problems are solved.

This is a much cleaner way of doing things.

share|improve this answer
Hey, thanks for your answer. This was indeed my initial approach, but I got stuck when it came to one thing: recursion. My code relies on recursion (w/ lambda function inside my buildMainMenu, as items can have sub menu's). – Bart Platak Aug 8 '12 at 1:53
OK. I'm not recommending this as a clean idea, but as you've already tried the other way - in your helper file I think you can do an "include ActionView::Helpers::UrlHelper" and then use link_to – David Lesches Aug 8 '12 at 1:58
I have taken your approach but the problem persists - HAML keeps filtering my strings and escaping them. – Bart Platak Aug 8 '12 at 2:58
up vote 0 down vote accepted

Just figured it out (I wish I've found it before spending over an hour on it but hey). For anyone interested:

There are two functions html_safe and raw that do the trick. Used as follow:

  • haml_tag :a, mitem["label"], :href=>link.html_safe
  • haml_tag :a, mitem["label"], :href=>raw(link)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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