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

Commit

Permalink
Merge pull request #101 from ckeditor/i/6304
Browse files Browse the repository at this point in the history
Feature: Added the [Automatic text transformation](https://ckeditor.com/docs/ckeditor5/latest/features/text-transformation.html) feature to the build. See ckeditor/ckeditor5#6304.
  • Loading branch information
oleq authored Mar 11, 2020
2 parents 6374f50 + d9b5b27 commit af021aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"@ckeditor/ckeditor5-paragraph": "^17.0.0",
"@ckeditor/ckeditor5-paste-from-office": "^17.0.0",
"@ckeditor/ckeditor5-table": "^17.0.0",
"@ckeditor/ckeditor5-typing": "^17.0.0",
"@ckeditor/ckeditor5-theme-lark": "^17.0.0",
"eslint": "^5.5.0",
"eslint-config-ckeditor5": "^2.0.0",
Expand Down
4 changes: 3 additions & 1 deletion src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
import Table from '@ckeditor/ckeditor5-table/src/table';
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation';

export default class ClassicEditor extends ClassicEditorBase {}

Expand All @@ -54,7 +55,8 @@ ClassicEditor.builtinPlugins = [
Paragraph,
PasteFromOffice,
Table,
TableToolbar
TableToolbar,
TextTransformation
];

// Editor configuration.
Expand Down

0 comments on commit af021aa

Please sign in to comment.