我正在尝试使用此处文档中指定的内置XHTML构建器构建原子提要 - http://api.rubyonrails.org/classes/ActionView/Helpers/AtomFeedHelper.html
在我的entry.content中,我所拥有的是:
entry.content type: 'xhtml' do |xhtml|
xhtml.li "Shipped to #{order.address} #{link_to order_name, root_url}"
end
以上代码打印出原始链接标记,如<a href=""></a>
,而不是Feed中的工作链接,这就是我需要的。
我是使用构建器生成xhtml的新手。任何帮助/建议将不胜感激。
答案 0 :(得分:1)
使用xhtml.li {|x| x << "#{order.address} - by #{link_to('Home', root_url)}"}
感谢@phlip给出一些指示。