medium-editor-vanilla-insert
v0.0.3
Published
VanillaJS, simple, extendable version of https://github.com/orthes/medium-editor-insert-plugin
Downloads
4
Maintainers
Readme
Medium Editor Vanilla Insert
Extension to MediumEditor inspired by but without dependencies.
It's written with Browserify in mind, but should work for most cases.
npm i --save medium-editor-vanilla-insert
Example
const
MediumEditor = require('medium-editor'),
Insert = require('medium-editor-vanilla-insert')({
MediumEditor: MediumEditor
});
new MediumEditor(div, {
extensions: {
insert: new Insert({
buttons: ['insert-image']
})
}
});
Same like for toolbar you can add your buttons as extensions as long they expose method getButton
. Just specify extension in buttons
option.
getButton
will get two arguments. First will be current MediumEditor instance. Second will be getter method to HTMLElement
in which context injector was shown.
License
MIT