auto_link(simple_format(h(text)), :href_options => { :class => 'auto-link' })it doesn't work. looking at the Rails code in text_helper.rb, auto_link is only looking for options[:html], so :href => {} just gets ignored. one actually needs to do this:
auto_link(simple_format(h(text)), :html => {:class => 'auto-link'})and now it works fine.
No comments:
Post a Comment