Rails & Redcarpet:在 ApplicationHelper 中使用时未初始化的常量 Redcarpet::Render
Posted
技术标签:
【中文标题】Rails & Redcarpet:在 ApplicationHelper 中使用时未初始化的常量 Redcarpet::Render【英文标题】:Rails & Redcarpet: uninitialized constant Redcarpet::Render when used in ApplicationHelper 【发布时间】:2013-02-03 06:55:29 【问题描述】:我正在关注Syntax Highlighting Revised 的 RailsCasts 剧集。我将 ApplicationHelper 更新为如下所示:
require 'redcarpet'
module ApplicationHelper
class htmlwithPygments < Redcarpet::Render::HTML
def block_code(code, language)
Pygments.highlight(code, lexer:language)
end
end
def markdown(text)
renderer = HTMLwithPygments.new(hard_wrap: true, filter_html: true)
options =
autolink: true,
no_intra_emphasis: true,
fenced_code_blocks: true,
lax_html_blocks: true,
strikethrough: true,
superscript: true
Redcarpet::Markdown.new(renderer, options).render(text).html_safe
end
end
但是,我的网络应用返回了
Routing Error
uninitialized constant Redcarpet::Render
Try running rake routes for more information on available routes.
我正在使用 Rails 3.2.11,Redcarpet 在 Rails 控制台中响应良好。我最初没有包含require 'redcarpet'
,但我按照here 上的说明进行操作,但没有帮助。
【问题讨论】:
【参考方案1】:我删除了我的Gemfile.lock
并再次删除了bundle install
,它运行良好。
【讨论】:
顺便说一句,您可能需要重新启动服务器。我就是这种情况。 我尝试了几次,但没有帮助,但我会记住这些建议,以防将来出现奇怪的情况。 :)以上是关于Rails & Redcarpet:在 ApplicationHelper 中使用时未初始化的常量 Redcarpet::Render的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Redcarpet for Rails 在 Markdown 中嵌入 YouTube 视频?
Rails / Redcarpet:Markdown->带有链接属性的HTML在帮助器中不起作用