wiki/list-editor
Peter Stuifzand e2aa173432
All checks were successful
continuous-integration/drone/push Build is passing
Problem: can't copy and paste multiline text as multiple items
Solution: split text and add multiple items
2022-01-09 22:15:48 +01:00
..
spec fix(store): move before and fix indent of multiple items 2021-08-24 22:27:16 +02:00
CHANGELOG.md Include list-editor 2020-10-14 23:43:52 +02:00
cursor.js Don't move cursor after remove 2020-10-31 14:55:34 +01:00
index.js Problem: can't copy and paste multiline text as multiple items 2022-01-09 22:15:48 +01:00
keymap.js Remove keymap logging 2021-08-17 22:07:58 +02:00
package-lock.json Move transformTable function 2020-10-25 19:49:22 +01:00
package.json Use webpack 5 2021-08-15 23:18:57 +02:00
README.md Include list-editor 2020-10-14 23:43:52 +02:00
selection.js Remove items below removed item 2020-10-28 20:12:04 +01:00
store.js Implement "Create page from item" 2021-11-06 14:36:10 +01:00
textarea.autosize.js Fix height of textarea to multiple of 24px 2020-10-31 13:35:59 +01:00
util.js Small changes for javascript formatted and structure 2020-10-31 23:28:29 +01:00

Node.js Package

Wiki List Editor

Installation

First install the package.

npm install wiki-list-editor --save

And then use it in your javascript code.

import editor from 'wiki-list-editor';

let div = document.createElement('div')
let listEditor = editor(div);
document.body.appendChild(div);

Author

Peter Stuifzand peter@p83.nl