Here's a link_to I'd like to add a custom HTML5 attribute to part of the string. Like this:
link_to "Awesome<Bold>Sauce</Bold>", root_path, :class => "logo"
Current output is: Awesome<Bold>Sauce</Bold> Obviously should be: Awesome Sauce
Any ideas?
This works but I'm looking to do it inline if possible.
link_to "Awesome", root_path, :class => "logo" link_to "Sauce", root_path, :class => "Bold"