在使用link_to方法生成的链接的主体中获取嵌入式HTML的最佳方法是什么?
我基本上想要以下内容:
<a href="##">This is a <strong>link</strong></a>
我一直在尝试按照Rails和<span>标记中的建议进行操作,但是没有运气。我的代码如下所示:
item_helper.rb
def picture_filter
#...Some other code up here
text = "Show items with " + content_tag(:strong, 'pictures')
link_to text, {:pics => true}, :class => 'highlight'
end
item_view.html.erb
#...
<%=raw picture_filter %>
#...