我是Ruby on rails的新手,我正在开发一个类似于堆栈溢出的项目,用户可以在编码方面提出问题并提交答案。
我最近安装了bootsy gem来创建一个漂亮的用户界面,允许用户提交照片及其文本。但是,由于我已经安装了这个gem,我的红毯宝石已经停止识别bootsy_area中的内联代码的格式。
这是问题的new.html.haml / edit.html.haml页面中的代码:
= f.bootsy_area :content, editor_options: {color: false, font_styles: false, link: false}, class: "form-control", id: "question_content"
这是显示在问题页面上的代码:
.question-content
= markdown(@question.content)
这是我的application_helper.rb文件中使用红地毯的代码:
def markdown(text)
Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true).render(text).html_safe
end
有关如何修复在视图中显示的内联代码的任何建议?谢谢!