# ckeditor5-indent-text

> Text indenting feature for CKEditor 5.

Latest version **1.0.12** (published 2020-02-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install ckeditor5-indent-text
pnpm add ckeditor5-indent-text
yarn add ckeditor5-indent-text
bun add ckeditor5-indent-text
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.12 |
| Published | 2020-02-24 |
| First published | 2018-10-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6.9.0 |
| Dependencies | 4 |
| Unpacked size | 7.7 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 10 |
| Author | Maksim Virchenko |
| Maintainers | mark1z |
| Keywords | ckeditor, ckeditor5, ckeditor 5, ckeditor5-feature, ckeditor5-plugin |

## Links

- npm: https://www.npmjs.com/package/ckeditor5-indent-text
- Repository: https://github.com/Mark1Z/ckeditor5-indent-text
- Issues: https://github.com/Mark1Z/ckeditor5-indent-text/issues
- npm.io page: https://npm.io/package/ckeditor5-indent-text

## Dependencies (4)

- [@ckeditor/ckeditor5-ui](https://npm.io/package/@ckeditor/ckeditor5-ui.md) ^17.0.0
- [@ckeditor/ckeditor5-core](https://npm.io/package/@ckeditor/ckeditor5-core.md) ^17.0.0
- [@ckeditor/ckeditor5-utils](https://npm.io/package/@ckeditor/ckeditor5-utils.md) ^17.0.0
- [@ckeditor/ckeditor5-engine](https://npm.io/package/@ckeditor/ckeditor5-engine.md) ^17.0.0

## Alternatives

- [ext-list](https://npm.io/package/ext-list.md) — 6.3M weekly downloads
- [@lexical/selection](https://npm.io/package/@lexical/selection.md) — 3.8M weekly downloads
- [@lexical/text](https://npm.io/package/@lexical/text.md) — 3.6M weekly downloads
- [@lexical/clipboard](https://npm.io/package/@lexical/clipboard.md) — 3.0M weekly downloads
- [@tiptap/extension-mention](https://npm.io/package/@tiptap/extension-mention.md) — 3.0M weekly downloads

## Recent versions

- 1.0.12 (latest) — 2020-02-24
- 1.0.11 — 2019-10-24
- 1.0.10 — 2019-09-10
- 1.0.9 — 2019-09-10
- 1.0.8 — 2019-06-13
- 1.0.7 — 2018-11-19
- 1.0.6 — 2018-11-02
- 1.0.5 — 2018-10-25
- 1.0.4 — 2018-10-25
- 1.0.3 — 2018-10-25
- 1.0.2 — 2018-10-25
- 1.0.1 — 2018-10-25
- 1.0.0 — 2018-10-25

## README

## CKEditor 5 text indent feature ##

This package implements text indent feature support for CKEditor 5.

#### Installation ####

```bash
npm install --save ckeditor5-indent-text
```

#### Usage and available options #### 

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

---
_Source: https://npm.io/package/ckeditor5-indent-text · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
