ckeditor5-small-caps
v1.0.2
Published
Small capitals feature for CKEditor 5.
Downloads
11
Maintainers
Readme
CKEditor 5 small caps feature
This package implements small caps feature support for CKEditor 5.
Installation
npm install --save ckeditor5-small-caps
import SmallCaps from 'ckeditor5-small-caps/src/small-caps';
ClassicEditor.builtinPlugins = [
...,
SmallCaps
];
ClassicEditor.defaultConfig = {
toolbar: {
items: [
...
'smallCaps'
]
},
};