|
|
@@ -6,9 +6,18 @@
|
|
|
/* globals console, window, document */
|
|
|
|
|
|
import ClassicEditor from '/ckeditor5/editor-classic/classic.js';
|
|
|
+import Autoformat from '/ckeditor5/autoformat/autoformat.js';
|
|
|
+import Enter from '/ckeditor5/enter/enter.js';
|
|
|
+import List from '/ckeditor5/list/list.js';
|
|
|
+import Typing from '/ckeditor5/typing/typing.js';
|
|
|
+import Heading from '/ckeditor5/heading/heading.js';
|
|
|
+import Paragraph from '/ckeditor5/paragraph/paragraph.js';
|
|
|
+import Undo from '/ckeditor5/undo/undo.js';
|
|
|
+import Bold from '/ckeditor5/basic-styles/bold.js';
|
|
|
+import Italic from '/ckeditor5/basic-styles/italic.js';
|
|
|
|
|
|
ClassicEditor.create( document.querySelector( '#editor' ), {
|
|
|
- features: [ 'enter', 'typing', 'paragraph', 'undo', 'basic-styles/bold', 'basic-styles/italic', 'heading', 'list', 'autoformat' ],
|
|
|
+ features: [ Enter, Typing, Paragraph, Undo, Bold, Italic, Heading, List, Autoformat ],
|
|
|
toolbar: [ 'headings', 'numberedList', 'bulletedList', 'bold', 'italic', 'undo', 'redo' ]
|
|
|
} )
|
|
|
.then( editor => {
|