mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-17 12:37:49 +08:00
34 lines
685 B
TypeScript
34 lines
685 B
TypeScript
import { Mark } from '@tiptap/core'
|
|
import { toggleMark } from 'prosemirror-commands'
|
|
|
|
export default class Bold extends Mark {
|
|
|
|
name = 'bold'
|
|
|
|
created() {
|
|
this.editor.registerCommand('bold', next => {
|
|
toggleMark(this.schemaType)
|
|
next()
|
|
})
|
|
}
|
|
|
|
schema() {
|
|
return {
|
|
parseDOM: [
|
|
{
|
|
tag: 'strong',
|
|
},
|
|
{
|
|
tag: 'b',
|
|
getAttrs: (node: HTMLElement) => node.style.fontWeight !== 'normal' && null,
|
|
},
|
|
// {
|
|
// style: 'font-weight',
|
|
// getAttrs: value => /^(bold(er)?|[5-9]\d{2,})$/.test(value) && null,
|
|
// },
|
|
],
|
|
toDOM: () => ['strong', 0],
|
|
}
|
|
}
|
|
|
|
} |