开源软件名称(OpenSource Name):hectorguo/CKEditor-Markdown-Plugin开源软件地址(OpenSource Url):https://github.com/hectorguo/CKEditor-Markdown-Plugin开源编程语言(OpenSource Language):JavaScript 100.0%开源软件介绍(OpenSource Introduction):CKEditor-Markdown-PluginMarkdown Plugin for CKEditor
This is a plugin for CKEditor, you can use Get StartedIt needs ckeditor standard version You can see the DEMO Usage
config.extraPlugins = 'markdown'; // add this plugin Enjoy it!
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here.
// For complete reference see:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
// The toolbar groups arrangement, optimized for two toolbar rows.
config.toolbarGroups = [
// { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
// { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
// { name: 'links' },
// { name: 'insert' },
// { name: 'forms' },
{ name: 'tools' },
// { name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
// '/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
// { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'styles' },
{ name: 'others' }
// { name: 'colors' },
// { name: 'about' }
];
// Remove some buttons provided by the standard plugins, which are
// not needed in the Standard(s) toolbar.
config.removeButtons = 'Underline,Subscript,Superscript';
config.extraPlugins = 'markdown'; // this is the point!
// Set the most common block elements.
config.format_tags = 'p;h1;h2;h3;pre';
// Simplify the dialog windows.
config.removeDialogTabs = 'image:advanced;link:advanced';
}; You can also use bower to install it.
Thanks |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论