A ckeditor plugin that allows you to save the content of your editor in markdown syntax.
When CKEditor is placed inside an HTML form, this plugin saves the editor content and submits it to the server. It also adds the Save Markdown toolbar button which submits the form that contains the editor.
Note: This functionality only works for classic editor placed inside a <form> element on the page.
The recommended way to install all CKEditor add-ons is to create a custom build by using Online builder. To do that, click the Add to my editor button on the plugin page. When you are done, click the Build my editor button on the right side of the page to go to Online builder.
Note: This add-on is already selected to be a part of your current build.
Add-on installation instructions
If you want to add the plugin manually, you will need to:
Extract the downloaded plugin .zip into the plugins folder of your CKEditor installation. Example:
http://example.com/ckeditor/plugins/savemarkdown
Enable the plugin by using the extraPlugins configuration setting. Example:
config.extraPlugins = 'savemarkdown';
Download and configure all its dependencies, too.
Add-on dependencies
No additional dependencies.
Note: The plugin may have additional requirements. Check the add-on page and documentation for more details.
In this version, it tries to copy the form that the ckeditor is placed in it, and inserts it at the end of body
element.
This form is not the exact copy of the original form that contains ckeditor.
It just contains the values of original form and it's textarea element with markdown value instead.
After this cloning instructions, it tries to submit the copy form.