mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-24 09:27:49 +08:00
39 lines
720 B
TypeScript
39 lines
720 B
TypeScript
import { Mark } from '@tiptap/core'
|
|
import { toggleMark } from 'prosemirror-commands'
|
|
import { MarkSpec } from 'prosemirror-model'
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface Editor {
|
|
italic(): Editor,
|
|
}
|
|
}
|
|
|
|
export default class Italic extends Mark {
|
|
|
|
name = 'italic'
|
|
|
|
created() {
|
|
this.editor.registerCommand('italic', (next, { view }) => {
|
|
toggleMark(this.schemaType)(view.state, view.dispatch)
|
|
next()
|
|
})
|
|
}
|
|
|
|
schema(): MarkSpec {
|
|
return {
|
|
parseDOM: [
|
|
{ tag: 'i' },
|
|
{ tag: 'em' },
|
|
{ style: 'font-style=italic' },
|
|
],
|
|
toDOM: () => ['em', 0],
|
|
}
|
|
}
|
|
|
|
keys() {
|
|
return {
|
|
'Mod-i': () => this.editor.italic(),
|
|
}
|
|
}
|
|
|
|
} |