Skip to content

Latest commit

 

History

History
executable file
·
46 lines (33 loc) · 565 Bytes

README.md

File metadata and controls

executable file
·
46 lines (33 loc) · 565 Bytes

ckeditor5-countdown

Countdown plugin for ckeditor5.

Quick start

First, install the build from npm:

yarn add ckeditor5-countdown

Use it in your application:

import Countdown from 'ckeditor5-countdown';

Add to the array

ClassicEditor.builtinPlugins = [
  .
  .
  .
  Countdown
];

Finally add to the toolbar items array

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

License

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