nested-list
nested-list copied to clipboard
Multi-leveled lists for the Editor.js.
**Expected behaviour**: If cursor located at the end of list item with link or another HTML tag, hitting Enter, empty new item are created. ```` * List item with a...
When usage relies on editor.js events (block added/remove/updated), the behavior when user presses "Enter" on last empty item does not trigger editor.js block updated event. As a result, the last...
- Resolves #15 , - Upgrading from `@editorjs/list` to `@editorjs/nested-list` is a pain because the data format is not compatible. - This change detects the `items: string[]` format from `@editorjs/list`...
Closes #43
The list is amazing. It would be really nice to do a module with nested checklists
resolves #29
**Expected behaviour**: Hitting Enter in an empty list item of level 1 (no indentation) removes the item, splits the list and inserts a paragraph. ``` 1. First item 2. Second...
**Expected behavior**: Outdenting an indented item should outdent the item and make the following items children of the now outdented item. Example: ``` 1. abc 1. def 2. ghi
**Expected behaviour**: Hitting Delete in an empty list item deletes the list item and moves the cursor to the beginning of the subsequent list item (if any) or to the...
**Expected behaviour**: Hitting Backspace at the beginning of the first item of a list turns the list items into a paragraph block. **Actual behaviour**: Hitting Backspace lets the cursor jump...