choo-md-editor

0.1.0 • Public • Published

Choo Markdown Editor Standard - JavaScript Style Guide

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

Readme

Keywords

Package Sidebar

Install

npm i choo-md-editor

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • dbtek