You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.6 KiB
44 lines
1.6 KiB
/**
|
|
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
|
|
* For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
|
|
*/
|
|
|
|
CKEDITOR.editorConfig = function( config ) {
|
|
// Define changes to default configuration here.
|
|
// For complete reference see:
|
|
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html
|
|
|
|
// The toolbar groups arrangement, optimized for a single toolbar row.
|
|
config.toolbarGroups = [
|
|
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
|
|
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
|
|
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
|
|
{ name: 'forms' },
|
|
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
|
|
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
|
|
{ name: 'links' },
|
|
{ name: 'insert' },
|
|
{ name: 'styles' },
|
|
{ name: 'colors' },
|
|
{ name: 'tools' },
|
|
{ name: 'others' },
|
|
{ name: 'about' }
|
|
];
|
|
|
|
// The default plugins included in the basic setup define some buttons that
|
|
// are not needed in a basic editor. They are removed here.
|
|
// config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript';
|
|
|
|
// Dialog windows are also simplified.
|
|
config.removeDialogTabs = 'image:advanced;link:advanced';
|
|
|
|
// Se the most common block elements.
|
|
config.format_tags = 'p;h1;h2;h3;pre';
|
|
|
|
config.autoGrow_minHeight = 80;
|
|
config.height = 80;
|
|
config.autoGrow_onStartup = true;
|
|
config.autoGrow_maxHeight = 500;
|
|
config.colorButton_enableMore = true;
|
|
config.plugins += ',removeRedundantNBSP,customCodeHighlighter';
|
|
};
|
|
|