123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- CKEDITOR.editorConfig = function( config ) {
-
-
-
-
- config.plugins = 'about,a11yhelp,basicstyles,bidi,blockquote,clipboard,colorbutton,colordialog,contextmenu,div,elementspath,enterkey,entities,filebrowser,find,floatingspace,font,format,forms,horizontalrule,htmlwriter,image,multiimg,indent,justify,link,list,liststyle,magicline,maximize,newpage,pagebreak,pastefromword,pastetext,preview,print,removeformat,resize,scayt,selectall,showblocks,showborders,sourcearea,specialchar,stylescombo,tab,table,tabletools,templates,toolbar,undo,wsc,wysiwygarea';
- config.toolbarGroups = [
- { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
- { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
- { name: 'links' },
- { name: 'others' },
- { name: 'insert' },
- { name: 'forms' },
- { name: 'tools' },
- { name: 'document', groups: [ 'multiimg', 'mode', 'document', 'doctools' ] },
- '/',
- { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
- { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
- { name: 'styles' },
- { name: 'colors' },
- { name: 'about' }
- ];
-
-
- config.removeButtons = 'Underline,Subscript,Superscript';
-
- config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';
- config.font_names='宋体/宋体;黑体/黑体;Arial/Arial, Helvetica, sans-serif;Century Gothic/Century Gothic;Comic Sans MS/Comic Sans MS, cursive;Courier New/Courier New, Courier, monospace;Georgia/Georgia, serif;Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;Tahoma/Tahoma, Geneva, sans-serif;Times New Roman/Times New Roman, Times, serif;Trebuchet MS/Trebuchet MS, Helvetica, sans-serif;Verdana/Verdana, Geneva, sans-serif';
- config.allowedContent = true;
-
- config.removeDialogTabs = 'image:advanced;link:advanced';
-
- config.extraPlugins="multiimg";
- };
|