Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 945 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 945 Bytes

Medium Editor Vanilla Insert

Extension to MediumEditor inspired by medium-editor-insert-plugin 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