wiki/list-editor
Peter Stuifzand 726f3c944b Problem: negative branch was first
Solution: positive branch is first
2022-05-01 22:01:27 +02:00
..
spec Problem: moving up from closed item, moved too far 2022-04-29 21:27:57 +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: Markdown takes some time to process 2022-04-29 21:42:06 +02:00
keymap.js Remove keymap logging 2021-08-17 22:07:58 +02:00
package-lock.json Copy and paste HTML as Markdown 2022-01-15 01:24:16 +01:00
package.json Copy and paste HTML as Markdown 2022-01-15 01:24:16 +01: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 Problem: negative branch was first 2022-05-01 22:01:27 +02: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