quill
Version:
Your powerful, rich text editor
19 lines • 449 B
JavaScript
import Inline from '../blots/inline.js';
class Bold extends Inline {
static blotName = 'bold';
static tagName = ['STRONG', 'B'];
static create() {
return super.create();
}
static formats() {
return true;
}
optimize(context) {
super.optimize(context);
if (this.domNode.tagName !== this.statics.tagName[0]) {
this.replaceWith(this.statics.blotName);
}
}
}
export default Bold;
//# sourceMappingURL=bold.js.map