1.0.2 • Published 5 years ago

ckeditor5-small-caps v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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'
		]
    },
};