是否可以在我的Ruby on Rails应用程序中使用marky中的ruby?我正在使用RedCarpet gem,我的应用程序控制器中有以下内容。
class ApplicationController < ActionController::Base
before_filter :get_contact_info
private
def get_contact_info
@contact = Contact.last
end
end
以下是联系方式
create_table "contacts", :force => true do |t|
t.string "phone"
t.string "email"
t.string "facebook"
t.string "twitter"
end
所以我有联系方式可以使用,有没有办法告诉降价渲染器渲染&lt;%= @ contact.phone%&gt;作为@ contact.phone的值而不是纯文本?或者我需要使用其他东西然后降价吗?
修改1:
在此处渲染降价:
应用程序/助手/ application_helper.rb
def markdown(text)
options = [:hard_wrap, :filter_html, :autolink, :no_intraemphasis]
Redcarpet.new(text, *options).to_html.html_safe
end
应用程序/视图/位点/ show.html.erb
<%= markdown(site.description) %>
编辑2:
这是我的解决方案,谢谢。我将您的代码集成到我的标记助手中,到目前为止似乎都有效。
def markdown(text)
erbified = ERB.new(text.html_safe).result(binding)
options = [:hard_wrap, :filter_html, :autolink, :no_intraemphasis]
Redcarpet.new(erbified, *options).to_html.html_safe
end
答案 0 :(得分:2)
您可以使用ERb预处理Markdown,然后将该结果传递给RedCarpet。我建议把它放在辅助方法中,如下所示:
module ContactsHelper
def contact_info(contact)
content = "Hello\n=====\n\nMy number is <%= contact.phone %>"
erbified = ERB.new(content).result(binding)
Redcarpet.new(erbified).to_html.html_safe
end
end
如果内容很多,你可以考虑编写一个部分内容并渲染部分内容而不是像上面那样在字符串中嵌入大量HTML,但这取决于你。