redmine_ckeditor icon indicating copy to clipboard operation
redmine_ckeditor copied to clipboard

Markdown Plugin

Open ulrichmueller opened this issue 8 years ago • 4 comments

Hi there.

I've put the markdown plugin (http://ckeditor.com/addon/markdown) to assets/ckeditor-conbtrib/plugins. I can pick it in the ckeditor configuration in redmine. But upon clicking the markdown button the ckeditor seems to crash as no input is possible any more.

  • Redmine 3.3.1
  • Current package

Any ideas?

Best regards.

ulrichmueller avatar Dec 06 '16 06:12 ulrichmueller

Anybody any ideas?

Thx

ulrichmueller avatar Dec 14 '16 15:12 ulrichmueller

Same here...

Environment: Redmine version 3.2.0.stable Ruby version 2.0.0-p647 (2015-08-18) [x86_64-linux] Rails version 4.2.5 Environment production Database adapter Mysql2 SCM: Subversion 1.8.13 Git 2.6.1 Filesystem
Redmine plugins: redmine_ckeditor 1.1.4 redmine_contacts 4.0.4 redmine_local_avatars 0.2.0 redmine_tweaks 0.5.7

thefreakquency avatar Feb 07 '17 23:02 thefreakquency

I was getting the same problem. Worked around it by hacking plugins/redmine_ckeditor/assets/ckeditor-contrib/plugins/markdown/plugin.js line 49 changed:

                textarea.addClass('cke_source cke_reset cke_enable_context_menu');

to:

                textarea.addClass('cke_source');
                textarea.addClass('cke_reset');
                textarea.addClass('cke_enable_context_menu');

TjlHope avatar Nov 14 '19 13:11 TjlHope

Guys, i've installed the plugin, enabled on ckeditor config page, currently i have the Markdown button on my ckeditor ribbon.

When i click on it, it successfully switch to markdown mode, i can type ...etc. BUT when i want to apply my text, nothing is recorded (it seems like i sent in an empty page).

What's wrong?

NH3CL avatar Nov 25 '19 08:11 NH3CL