我在textarea上的rails应用程序上安装了SimpleMDE来创建帖子。我遇到的问题是当我想编辑post.body的内容时(即具有simplemde的textarea)看起来像你在屏幕截图中看到的缩进:
我已经查看了show动作的源代码,以防它生成一些额外的标签,但降价看起来很好
这让我觉得编辑器出了问题。如何修复编辑器上显示的缩进?
这也是我的代码
# The gemfile
gem 'simplemde', '~> 0.1.0'
gem 'redcarpet', '~> 3.4'
# gem 'html-pipeline', '~> 2.5'
# gem 'github-markdown', '~> 0.6.9'
# gem 'sanitize', '~> 4.4'
# the _form.html.haml file
= f.input :body, as: :text, input_html: { class: 'simplemde' }
# the coffescript file
simplemde = null
$(document).on 'turbolinks:before-visit', ->
if simplemde?
simplemde.toTextArea()
simplemde = null
$(document).on 'turbolinks:load', ->
simplemde = new SimpleMDE(element: $('.simplemde')[0])
答案 0 :(得分:1)
我找到了一个解决方案,所以我打算在这里发布,以防其他人需要它。
https://github.com/NextStepWebs/simplemde-markdown-editor/issues/480
基本上所有需要的东西都是替换
= f.input :body
与
~ f.input :body # notice the tilde symbol
这将解决所有问题。
然而,如果有更好的解决方案,我会很感激,如果有人发布它。