0.1.0 • Published 4 years ago

ckeditor5-footnote v0.1.0

Weekly downloads
32
License
ISC
Repository
github
Last release
4 years ago

CKEditor 5 Footnote plugin

This package implements footnote feature for CKEditor 5.

Documentation

Installation

Install the ckeditor5-footnote package:

npm install --save ckeditor5-footnote

Then add the Footnote plugin to the plugin list:

import FootNote from 'ckeditor5-footnote/src/footnote';

ClassicEditor
    .create( document.querySelector( '#editor' ), {
        plugins: [ FootNote, ... ],
        toolbar: [ 'footnote', ... ],
    } )
    .then( ... )
    .catch( ... );