0.1.0 • Published 3 years ago

ckeditor5-button v0.1.0

Weekly downloads
4
License
GPL-2.0-or-later
Repository
github
Last release
3 years ago

ckeditor5-button

Button plugin for ckeditor5.

Quick start

First, install the build from npm:

yarn add ckeditor5-button

Use it in your application:

import Button from 'ckeditor5-button';

Add to the array

ClassicEditor.builtinPlugins = [
  .
  .
  .
  Button
];

Finally add to the toolbar items array

toolbar: {
  items: [
    .
    .
    .
    'button'
  ]
}

License

Licensed under the terms of GNU General Public License Version 2 or later.