File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/neos-ui-ckeditor5-bindings Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 6
6
"main" : " ./src/manifest.js" ,
7
7
"dependencies" : {
8
8
"@ckeditor/ckeditor5-alignment" : " ^44.0.0" ,
9
+ "@ckeditor/ckeditor5-autoformat" : " ^44.0.0" ,
9
10
"@ckeditor/ckeditor5-basic-styles" : " ^44.0.0" ,
10
11
"@ckeditor/ckeditor5-core" : " ^44.0.0" ,
11
12
"@ckeditor/ckeditor5-editor-decoupled" : " ^44.0.0" ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import LinkTargetBlank from './plugins/linkTargetBlank';
8
8
import LinkRelNofollow from './plugins/linkRelNofollow' ;
9
9
import LinkDownload from './plugins/linkDownload' ;
10
10
import LinkTitle from './plugins/linkTitle' ;
11
+ import Autoformat from '@ckeditor/ckeditor5-autoformat/src/autoformat' ;
11
12
import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials' ;
12
13
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph' ;
13
14
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold' ;
@@ -105,6 +106,7 @@ export default ckEditorRegistry => {
105
106
//
106
107
// Add plugins
107
108
//
109
+ config . set ( 'autoformat' , addPlugin ( Autoformat ) ) ;
108
110
config . set ( 'essentials' , addPlugin ( Essentials ) ) ;
109
111
config . set ( 'paragraph' , addPlugin ( Paragraph ) ) ;
110
112
config . set ( 'disabledAutoparagraphMode' , addPlugin ( DisabledAutoparagraphMode , disableAutoparagraph ) ) ;
You can’t perform that action at this time.
0 commit comments