将 Redcarpet 与 rails 一起使用 4
Using Redcarpet with rails 4
我安装了 Redcarpet。我正在关注 272 Railscast 教程,了解如何使用它。我的 show.html.erb
中有这一行
<%= Redcarpet.new(@topic.text).to_html %>
我的 rails 应用似乎不知道有 Redcarpet。我给了一个 NoMethodError
:
undefined method `new' for Redcarpet:Module
我该如何解决这个问题?
请尝试以下操作:
<%= Markdown.new(@topic.text).to_html %>
您可能想看看 definition of that method。
我安装了 Redcarpet。我正在关注 272 Railscast 教程,了解如何使用它。我的 show.html.erb
<%= Redcarpet.new(@topic.text).to_html %>
我的 rails 应用似乎不知道有 Redcarpet。我给了一个 NoMethodError
:
undefined method `new' for Redcarpet:Module
我该如何解决这个问题?
请尝试以下操作:
<%= Markdown.new(@topic.text).to_html %>
您可能想看看 definition of that method。