npm.io
1.0.12 • Published 6 years ago

ckeditor5-indent-text

Licence
MIT
Version
1.0.12
Deps
4
Size
8 kB
Vulns
1
Weekly
0
Stars
10

CKEditor 5 text indent feature

This package implements text indent feature support for CKEditor 5.

Installation

npm install --save ckeditor5-indent-text
Usage and available options
//...
import ClassicEditorBase from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
import IndentTextPlugin from 'ckeditor5-indent-text/src/indent-text';

export default class ClassicEditor extends ClassicEditorBase {
}

ClassicEditor.builtinPlugins = [
    //...
    IndentTextPlugin,
    //...
];

ClassicEditor.defaultConfig = {
    //...
    toolbar: {
        items: [
            //...
            'indentLeft',
            'indentRight',
            //...
        ]
    },
    //...
    indentText: {
        options: {
            indentLength: 40,
            indentMeasure: 'px',
        },
    },
    //...
};

Keywords