This is a clone of this Editor.js nested-list block tool. It fixes the ordered list issue.
Using npm
npm install @coolbytes/editorjs-list
Using yarn
yarn add @coolbytes/editorjs-list
Include it in the tools
property of Editor.js config:
const editor = new EditorJS({
tools: {
list: List
}
});
Or init the List tool with additional settings
const editor = new EditorJS({
tools: {
list: {
class: List,
inlineToolbar: true,
config: {
defaultStyle: 'unordered'
},
},
},
});
Field | Type | Description |
---|---|---|
defaultStyle | string |
default list style: ordered or unordered , default is unordered
|
Field | Type | Description |
---|---|---|
style | string |
type of a list: ordered or unordered
|
items | Item[] |
the array of list's items |
Object Item
:
Field | Type | Description |
---|---|---|
content | string |
item's string content |
items | Item[] |
the array of list's items |
{
"type" : "list",
"data" : {
"style" : "unordered",
"items" : [
{
"content": "Apples",
"items": [
{
"content": "Red",
"items": []
},
{
"content": "Green",
"items": []
},
]
},
{
"content": "Bananas",
"items": [
{
"content": "Yellow",
"items": []
},
]
},
]
}
},