mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-17 12:37:49 +08:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import { Command, Mark, markInputRule, markPasteRule } from '@tiptap/core'
|
|
|
|
export type BoldCommand = () => Command
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface Editor {
|
|
bold: BoldCommand,
|
|
}
|
|
}
|
|
|
|
export const starInputRegex = /(?:^|\s)((?:\*\*)((?:[^\*\*]+))(?:\*\*))$/gm
|
|
export const starPasteRegex = /(?:^|\s)((?:\*\*)((?:[^\*\*]+))(?:\*\*))/gm
|
|
export const underscoreInputRegex = /(?:^|\s)((?:__)((?:[^__]+))(?:__))$/gm
|
|
export const underscorePasteRegex = /(?:^|\s)((?:__)((?:[^__]+))(?:__))/gm
|
|
|
|
export default new Mark()
|
|
.name('bold')
|
|
.schema(() => ({
|
|
parseDOM: [
|
|
{
|
|
tag: 'strong',
|
|
},
|
|
{
|
|
tag: 'b',
|
|
getAttrs: node => (node as HTMLElement).style.fontWeight !== 'normal' && null,
|
|
},
|
|
{
|
|
style: 'font-weight',
|
|
getAttrs: value => /^(bold(er)?|[5-9]\d{2,})$/.test(value as string) && null,
|
|
},
|
|
],
|
|
toDOM: () => ['strong', 0],
|
|
}))
|
|
.commands(({ name }) => ({
|
|
bold: () => ({ commands }) => {
|
|
return commands.toggleMark(name)
|
|
},
|
|
}))
|
|
.keys(({ editor }) => ({
|
|
'Mod-b': () => editor.bold()
|
|
}))
|
|
.inputRules(({ type }) => [
|
|
markInputRule(starInputRegex, type),
|
|
markInputRule(underscoreInputRegex, type),
|
|
])
|
|
.pasteRules(({ type }) => [
|
|
markPasteRule(starPasteRegex, type),
|
|
markPasteRule(underscorePasteRegex, type),
|
|
])
|
|
.create()
|