An open API service indexing awesome lists of open source software.

https://github.com/featurist/hyperdom-medium-editor

medium-editor for hyperdom
https://github.com/featurist/hyperdom-medium-editor

Last synced: 4 months ago
JSON representation

medium-editor for hyperdom

Awesome Lists containing this project

README

          

# Medium Editor for hyperdom

npm install hyperdom-medium-editor

## Usage

```js
var mediumEditor = require('hyperdom-medium-editor');

function render(model) {
return mediumEditor({
class: 'my-class',
binding: [model, 'html'],

mediumOptions: {
...
buttons: ['bold', 'italic', 'header1', 'header2', 'unorderedlist', 'orderedlist'],
...
}
});
}
```