choo-md-editor
v0.1.0
Published
A featured lightweight markdown editor built for choo.
Downloads
2
Readme
Choo Markdown Editor
Markdown Editor built with Choo / for Choo. It can be used inside a Choo app or as a standalone library.
Install
$ npm i -S choo-md-editor
Usage
choo-md-editor depends on some parts of Bulma styles. If you use Bulma in your project use choo-md-editor.bulma.css
instead of whole choo-md-editor.css
.
Standalone Library
const element = document.getElementById('editor-container')
const editor = require('choo-md-editor')
editor(element, {onChange: (val) => console.info('Markdown changed', val)})
Inside choo app
app = choo()
...
app.model(require('choo-md-editor/model'))
...
const editor = require('choo-md-editor/component')
const mainView = (state, prev, send) => {
html `
<div>
$editor(state, send)
</div>
`
}
Credits
Author
İsmail Demirbilek @dbtek