最佳答案
在使用 link _ to 方法生成的链接的主体中嵌入 HTML 的最佳方法是什么?
我基本上想要的是:
<a href="##">This is a <strong>link</strong></a>
我一直在尝试按照 Rails 和 < span > 标记的建议去做这件事,但是没有成功。我的代码如下:
def picture_filter
#...Some other code up here
text = "Show items with " + content_tag(:strong, 'pictures')
link_to text, {:pics => true}, :class => 'highlight'
end
#...
<%=raw picture_filter %>
#...