1.0.0 • Published 1 year ago

ck5-lineheight v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

ckeditor5-line-height-latest

Plugin for CKEditor5 to change your lingheight.

Get Started

Install:

npm install --save ckeditor5-line-height-latest

or using yarn:

yarn add ckeditor5-line-height-latest

Use it in your application:

import LineHeight from "ckeditor5-line-height-latest/src/lineheight";

Add it to your editor:

ClassicEditor
    .create( document.querySelector( '#editor' ), {
        plugins: [
            ...,
            LineHeight, // add it to your plugins array
        ],
        lineHeight: { // specify your otions in the lineHeight config object. Default values are [ 0, 0.5, 1, 1.5, 2 ]
            options: [ 0.5, 1, 1.5, 2, 2.5 ]
        }
        toolbar: [
            ...,
            'lineHeight', // add the button to your toolbar
        ]
    } )

License

Licensed under the terms of GNU General Public License Version 3.

1.0.0

1 year ago