This simple plugin allow you to change between lower case and upper case letters, capitalize, or to mix case the text selection in the ckeditor 5.
Feel free to submit issues and enhancement requests.
In your ckeditor5 project:
npm i ckeditor5-letter-case
or
yarn add ckeditor5-letter-case
Update src/ckeditor.js with:
import LetterCase from 'ckeditor5-letter-case';
Editor.builtinPlugins = [
// ...
LetterCase,
// ...
];
Editor.defaultConfig = {
toolbar: {
items: [
// ...
'LetterCase',
// ...
]
},
};
Then
npm run build
or
yarn build
Licensed under the terms of GNU General Public License Version 2 or later.