@editorjs/nested-list

1.4.2 • Public • Published

Nested List Tool for Editor.js

Multi-leveled lists for the Editor.js.

Use Tab and Shift+Tab keys to create or remove sublist with a padding.

Installation

Get the package

yarn add @editorjs/nested-list

Include module at your application

import NestedList from '@editorjs/nested-list';

Optionally, you can load this tool from CDN JsDelivr CDN

Usage

Add the NestedList Tool to the tools property of the Editor.js initial config.

import EditorJS from '@editorjs/editorjs';
import NestedList from '@editorjs/nested-list';

var editor = EditorJS({
  // ...
  tools: {
    ...
    list: {
      class: NestedList,
      inlineToolbar: true,
      config: {
        defaultStyle: 'unordered'
      },
    },
  },
});

Config Params

Field Type Description
defaultStyle string default list style: ordered or unordered, default is unordered

Tool's settings

You can choose list`s type.

Output data

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": []
                },
              ]
            },
        ]
    }
},

/@editorjs/nested-list/

    Package Sidebar

    Install

    npm i @editorjs/nested-list

    Weekly Downloads

    13,343

    Version

    1.4.2

    License

    MIT

    Unpacked Size

    32.5 kB

    Total Files

    7

    Last publish

    Collaborators

    • codex-team