1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/**
* @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/license
*/
/**
* This file was added automatically by CKEditor builder.
* You may re-use it at any time to build CKEditor again.
*
* If you would like to build CKEditor online again
* (for example to upgrade), visit one the following links:
*
* (1) https://ckeditor.com/cke4/builder
* Visit online builder to build CKEditor from scratch.
*
* (2) https://ckeditor.com/cke4/builder/53386cf359321d3583c8e5ac14ad7640
* Visit online builder to build CKEditor, starting with the same setup as before.
*
* (3) https://ckeditor.com/cke4/builder/download/53386cf359321d3583c8e5ac14ad7640
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
*
* NOTE:
* This file is not used by CKEditor, you may remove it.
* Changing this file will not change your CKEditor configuration.
*/
var CKBUILDER_CONFIG = {
skin: 'moonocolor',
preset: 'full',
ignore: [
'.DS_Store',
'.bender',
'.editorconfig',
'.gitattributes',
'.gitignore',
'.idea',
'.jscsrc',
'.jshintignore',
'.jshintrc',
'.mailmap',
'.npm',
'.travis.yml',
'bender-err.log',
'bender-out.log',
'bender.ci.js',
'bender.js',
'dev',
'gruntfile.js',
'less',
'node_modules',
'package.json',
'tests'
],
plugins: {
'OpenStreet': 1,
'a11yhelp': 1,
'about': 1,
'basicstyles': 1,
'blockquote': 1,
'bootstrapTabs': 1,
'bt_table': 1,
'clipboard': 1,
'colorbutton': 1,
'colordialog': 1,
'contextmenu': 1,
'copyformatting': 1,
'dialogadvtab': 1,
'div': 1,
'elementspath': 1,
'enterkey': 1,
'entities': 1,
'filebrowser': 1,
'find': 1,
'floatingspace': 1,
'font': 1,
'format': 1,
'forms': 1,
'horizontalrule': 1,
'html5validation': 1,
'html5video': 1,
'htmlwriter': 1,
'iframe': 1,
'image': 1,
'indentblock': 1,
'indentlist': 1,
'justify': 1,
'link': 1,
'list': 1,
'liststyle': 1,
'magicline': 1,
'maximize': 1,
'newpage': 1,
'pastetext': 1,
'preview': 1,
'print': 1,
'removeformat': 1,
'resize': 1,
'save': 1,
'selectall': 1,
'showblocks': 1,
'showborders': 1,
'sourcearea': 1,
'specialchar': 1,
'stylescombo': 1,
'tab': 1,
'table': 1,
'tableselection': 1,
'tabletools': 1,
'templates': 1,
'toolbar': 1,
'undo': 1,
'wysiwygarea': 1
},
languages: {
'en': 1,
'en-gb': 1
}
};
|