What is @ckeditor/ckeditor5-indent?
@ckeditor/ckeditor5-indent is a plugin for CKEditor 5 that provides indentation features for text content. It allows users to increase or decrease the indentation of paragraphs and list items, enhancing the text formatting capabilities of the editor.
What are @ckeditor/ckeditor5-indent's main functionalities?
Indent Paragraph
This feature allows users to indent paragraphs within the CKEditor 5 instance. The provided code sample demonstrates how to configure the editor to include the indent and outdent buttons in the toolbar.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [Indent, Paragraph], toolbar: ['indent', 'outdent'] })
Indent List Items
This feature enables users to indent list items, both bulleted and numbered, within the CKEditor 5 instance. The code sample shows how to set up the editor with list and indent functionalities.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [Indent, List], toolbar: ['bulletedList', 'numberedList', 'indent', 'outdent'] })
Other packages similar to @ckeditor/ckeditor5-indent
quill
Quill is a modern WYSIWYG editor built for compatibility and extensibility. It provides similar indentation features through its built-in toolbar options. Compared to @ckeditor/ckeditor5-indent, Quill offers a more lightweight and flexible approach but may require additional configuration for advanced use cases.
tinymce
TinyMCE is a popular rich text editor that includes comprehensive text formatting options, including indentation. It offers a robust set of features and plugins similar to CKEditor 5, making it a strong alternative for users looking for extensive customization and functionality.
44.3.0 (March 5, 2025)
We are happy to announce the release of CKEditor 5 v44.3.0.
Release Highlights
This release brings a couple of minor improvements and bug fixes:
- Link Decorators: We fixed the behavior of the multiple manual link decorators that set the
rel
attribute. The fix happened so deep in the engine that we improved the overall performance of the editor slightly as well. - Added a new
EmptyBlock
plugin: From now on, new plugin prevents adding
to the output data of blocks, works similarly to the fillEmptyBlocks
configuration in CKEditor 4. - Support for the
<hr>
element in the General HTML Support plugin enhanced: attributes of the <hr>
element are now properly preserved if configuration allows it. - Emoji: We enhanced emoji support for better compatibility with users' older devices.
For more details, see the changelog below.