Hi all
I''m evaluating Markaby, and stumbled right over the first oddity. When
using
td link_to(''Bla'', :action => ''bla'')
Markaby escapes special chars automatically! So instead of
<td><a href="/music/artists/bla">Bla</a></td>
on my website, I''m getting
<td><a
href="/music/artists/bla">Bla</a></td>
Is there a way to turn this behavior off? I know that I can achieve the
desired result using
td { link_to(''Bla'', :action => ''bla'') }
but I don''t really see too much advantage in this, I want to decide
myself when I want to escape stuff and when not. So I''d just like to be
able to use
td link_to(''Bla'', :action => ''bla'')
and
td h(link_to(''Bla'', :action => ''bla''))
Thanks a lot for help :-)
Josh
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---