hectorguo / CKEditor-Markdown-Plugin

Markdown Plugin for CKEditor
http://hectorguo.github.io/CKEditor-Markdown-Plugin/
112 stars 24 forks source link

How to Wrap the text in Markdown View of CKEditor? #32

Open pancodia opened 6 years ago

pancodia commented 6 years ago

Is it possible to wrap the text in the markdown editing mode? Currently if I don't start a new line, all text s show on a single line, which makes the editor very wide.

screen shot 2018-09-07 at 11 53 44 am

mach-kernel commented 5 years ago

I was about to fork and add this myself because I needed it, but noticed that the plugin just wraps CodeMirror:

  // https://github.com/hectorguo/CKEditor-Markdown-Plugin/blob/master/markdown/plugin.js#L102-L105
  // https://codemirror.net/doc/manual.html
  config.markdown = {
    lineWrapping: true
  }

This will do it.

jmalarcon commented 5 years ago

@mach-kernel Works perfectly. Thanks!