wiki/list-editor
Peter Stuifzand b8910f9aa6 Better copy and paste
With thi change we now use a json representation to copy and paste list items.
2020-11-16 22:38:38 +01:00
..
spec Rotate items to moveBefore 2020-10-30 23:43:00 +01: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 Better copy and paste 2020-11-16 22:38:38 +01:00
keymap.js Add vim key commands 2020-11-08 21:15:54 +01:00
package-lock.json Move transformTable function 2020-10-25 19:49:22 +01:00
package.json Include list-editor 2020-10-14 23:43:52 +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 Better copy and paste 2020-11-16 22:38:38 +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