1.0.12 • Published 4 years ago

ckeditor5-indent-text v1.0.12

Weekly downloads
8
License
MIT
Repository
github
Last release
4 years ago

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',
        },
    },
    //...
};