a-ono / redmine_ckeditor

Redmine plugin for integration CKEditor
304 stars 140 forks source link

Markdown Plugin #235

Open ulrichmueller opened 7 years ago

ulrichmueller commented 7 years ago

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.

Any ideas?

Best regards.

ulrichmueller commented 7 years ago

Anybody any ideas?

Thx

thefreakquency commented 7 years ago

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

TjlHope commented 4 years ago

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');
NH3CL commented 4 years ago

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?