Important
This repository is deprecated and is no longer supported. Take a look at a new repository List tool with more functionality and compatibility with old data.
Get the package
yarn add @editorjs/listInclude module at your application
import List from "@editorjs/list";Optionally, you can load this tool from CDN JsDelivr CDN
Add the List Tool to the tools property of the Editor.js initial config.
import EditorJS from '@editorjs/editorjs';
import List from '@editorjs/list';
var editor = EditorJS({
  // ...
  tools: {
    ...
    list: {
      class: List,
      inlineToolbar: true,
      config: {
        defaultStyle: 'unordered'
      }
    },
  },
});| Field | Type | Description | 
|---|---|---|
| defaultStyle | string | type of a list: orderedorunordered, default isordered | 
You can choose list`s type.
| Field | Type | Description | 
|---|---|---|
| style | string | type of a list: orderedorunordered | 
| items | string[] | the array of list's items | 
{
    "type" : "list",
    "data" : {
        "style" : "unordered",
        "items" : [
            "This is a block-styled editor",
            "Clean output data",
            "Simple and powerful API"
        ]
    }
},This tool supports the i18n api.
To localize UI labels, put this object to your i18n dictionary under the tools section:
"list": {
  "Ordered": "Нумерованный",
  "Unordered": "Маркированный"
}See more instructions about Editor.js internationalization here: https://editorjs.io/internationalization

