Skip to content

Instantly share code, notes, and snippets.

@synuns
synuns / reactQuillWithCustomTagHr.tsx
Last active July 18, 2023 00:16
Let's see how to put a custom tag for a custom toolbar in react-quill using the hr tag.
import ReactQuill, { Quill } from 'react-quill';
class Divider extends Embed {
// if you want to add inline style, override create method
static create(value: any) {
const node = super.create(value);
// give it some inline styles
node.setAttribute('style', 'border: 0; border-top: 1px solid rgba(0,0,0,.1); margin-top:10px; margin-bottom:10px;');
return node;
}