Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit af021aa

Browse files
authored
Merge pull request #101 from ckeditor/i/6304
Feature: Added the [Automatic text transformation](https://ckeditor.com/docs/ckeditor5/latest/features/text-transformation.html) feature to the build. See ckeditor/ckeditor5#6304.
2 parents 6374f50 + d9b5b27 commit af021aa

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"@ckeditor/ckeditor5-paragraph": "^17.0.0",
4646
"@ckeditor/ckeditor5-paste-from-office": "^17.0.0",
4747
"@ckeditor/ckeditor5-table": "^17.0.0",
48+
"@ckeditor/ckeditor5-typing": "^17.0.0",
4849
"@ckeditor/ckeditor5-theme-lark": "^17.0.0",
4950
"eslint": "^5.5.0",
5051
"eslint-config-ckeditor5": "^2.0.0",

src/ckeditor.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
2828
import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
2929
import Table from '@ckeditor/ckeditor5-table/src/table';
3030
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
31+
import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation';
3132

3233
export default class ClassicEditor extends ClassicEditorBase {}
3334

@@ -54,7 +55,8 @@ ClassicEditor.builtinPlugins = [
5455
Paragraph,
5556
PasteFromOffice,
5657
Table,
57-
TableToolbar
58+
TableToolbar,
59+
TextTransformation
5860
];
5961

6062
// Editor configuration.

0 commit comments

Comments
 (0)