add mark
This commit is contained in:
34
packages/extension-bold/index.ts
Normal file
34
packages/extension-bold/index.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
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],
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
17
packages/extension-bold/package.json
Normal file
17
packages/extension-bold/package.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text",
|
||||
"version": "1.0.0",
|
||||
"source": "index.ts",
|
||||
"main": "dist/tiptap-extension-text.js",
|
||||
"umd:main": "dist/tiptap-extension-text.umd.js",
|
||||
"module": "dist/tiptap-extension-text.mjs",
|
||||
"unpkg": "dist/tiptap-extension-text.js",
|
||||
"jsdelivr": "dist/tiptap-extension-text.js",
|
||||
"files": [
|
||||
"src",
|
||||
"dist"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "2.x"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user