ListConfig
interface
The configuration of the list feature and the legacy list feature.
ClassicEditor
.create( editorElement, {
list: ... // The list feature configuration.
} )
.then( ... )
.catch( ... );
Copy code
See all editor options.
ListConfig
Properties
enableListItemMarkerFormatting : boolean | undefinedmodule:list/listconfig~ListConfig#enableListItemMarkerFormattingEnables list item marker formatting. Current list of integrated formatting plugins includes:
Note: This is enabled by default.
Defaults to
truemultiBlock : boolean | undefinedmodule:list/listconfig~ListConfig#multiBlockAllows multiple blocks in single list item.
With this option enabled you can have block widgets, for example images or even tables, within a list item.
Note: This is enabled by default.
Defaults to
trueproperties : ListPropertiesConfig | undefinedmodule:list/listconfig~ListConfig#propertiesThe configuration of the
ListPropertiesfeature and the legacy list properties feature.Read more in
ListPropertiesConfig.