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

https://github.com/devforth/quilljs-image-buttons

Overlay image buttons for quill
https://github.com/devforth/quilljs-image-buttons

Last synced: 4 months ago
JSON representation

Overlay image buttons for quill

Awesome Lists containing this project

README

        

# quilljs-image-buttons
Overlay image buttons for quill

![](https://s.hinty.io/W3owGBk5XoGtCvJc3x9kYi.png)

```js
import Quill from 'quill';
import { imageButtons } from 'quilljs-image-buttons';

Quill.register('modules/imageButtons', imageButtons);

const quill = new Quill(editor, {
modules: {
imageButtons: [
html: 'Edit',
callback: function(imageSrc, replaceImage) {
replaceImage(new_image_src)
},
],
}
});
```