UNPKG

quill

Version:

Your powerful, rich text editor

30 lines (22 loc) 392 B
import Embed from './embed'; class Break extends Embed { static value() { return undefined; } insertInto(parent, ref) { if (parent.children.length === 0) { super.insertInto(parent, ref); } else { this.remove(); } } length() { return 0; } value() { return ''; } } Break.blotName = 'break'; Break.tagName = 'BR'; export default Break;