The {@link module:list/list~List list} feature allows creating ordered (numbered) and unordered (bulleted) lists. This allows for better structuring and presenting specific content such as enumerating elements, creating tables of content or {@link features/todo-lists to-do lists}.
The feature is enabled by default in all CKEditor 5 WYSIWYG editor builds.
{@snippet features/lists-source}
An unordered (bulleted) list can represent items where the order is not important, for example, a list of ingredients required for preparing a dish or a drink.
An ordered (numbered) list can be used if the order of the items matters, for example, when creating an instruction. Here, the sequence of steps that must be done is important.
Use the editor below to see the list feature plugin in action.
{@snippet features/lists-basic}
The {@link module:list/liststyle~ListStyle list style} feature introduces some more styles for the list item markers. When enabled, it adds 3 styles for unordered lists and 6 styles for ordered lists to choose from. The styles can be changed via the dropdown that opens when you click the arrow next to the appropriate list button in the toolbar.
Use the editor below to see the list style plugin in action.
{@snippet features/lists-style}
These features also provide similar functionality:
To add this feature to your editor, install the @ckeditor/ckeditor5-list package:
npm install --save @ckeditor/ckeditor5-list
Then add the ListStyle plugin to your plugin list and the toolbar configuration:
import ListStyle from '@ckeditor/ckeditor5-list/src/liststyle';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ ListStyle, ... ],
toolbar: [ 'bulletedList', 'numberedList', ... ],
} )
.then( ... )
.catch( ... );
Read more about {@link builds/guides/integration/installing-plugins installing plugins}.
The {@link module:list/liststyle~ListStyle} feature overrides UI button implementations from the {@link module:list/listui~ListUI}.
Refer to the {@link features/indent Indenting lists} section of the Block indentation feature guide.
The {@link module:list/list~List} plugin registers:
'numberedList'} command.'bulletedList'} command.'indentList'} command.'outdentList'} command.'numberedList' UI button.'bulletedList' UI button.The {@link module:list/liststyle~ListStyle} plugin registers:
The {@link module:list/liststylecommand~ListStyleCommand 'listStyle'} command that accepts a type of the list style to set.
editor.execute( 'listStyle', { type: 'decimal' } );
The available types are:
'disc', 'circle', and 'square'.'decimal', 'decimal-leading-zero', 'lower-roman', 'upper-roman', 'lower-latin', and 'upper-latin'.The 'numberedList' UI split button (it overrides the UI button registered by the List plguin.
The 'bulletedList' UI split button (it overrides the UI button registered by the List plguin.
The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list.