
package.formats.bold.js Maven / Gradle / Ivy
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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy