ruby-on-rails-3 – Redcarpet 2.0.1

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-3 – Redcarpet 2.0.1前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在关注 this tutorial,但它仍然没有说“Redcarpet:Module”的“未定义的方法`new”.我的Gemfile中有gem“redcarpet”.失败的代码片段:
Redcarpet.new(@post.content).to_html

解决方法

好吧,看起来Redcarpet 2完全改变了API.以下作品:
markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML,:autolink => true,:space_after_headers => true)
raw markdown.render(@post_content.content)
原文链接:https://www.f2er.com/ruby/267218.html

猜你在找的Ruby相关文章