0

我已经在我的 rails 应用程序上的 textarea 上安装了SimpleMDE以创建帖子。我遇到的问题是当我想编辑 post.body 的内容(即具有 simplemde 的 textarea)看起来像你在屏幕截图中看到的那样缩进:

在此处输入图像描述

我已经查看了显示操作的源代码,以防它生成一些额外的标签,但降价看起来不错

在此处输入图像描述

这让我觉得编辑器有问题。如何修复编辑器上显示的缩进?

这也是我的代码

# 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])
4

1 回答 1

1

我找到了一个解决方案,所以我将把它贴在这里以防万一其他人需要它。

https://github.com/NextStepWebs/simplemde-markdown-editor/issues/480

基本上所有需要做的就是更换

= f.input :body

~ f.input :body # notice the tilde symbol

这将解决所有问题。

但是,如果有更好的解决方案,如果有人会发布它,我将不胜感激。

于 2017-03-21T22:03:42.777 回答