tiptap/packages/extension-superscript/src/superscript.ts

76 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-06-09 17:05:41 +08:00
import { Mark, mergeAttributes } from '@tiptap/core'
export interface SuperscriptExtensionOptions {
HTMLAttributes: Object,
}
declare module '@tiptap/core' {
2021-06-09 17:05:41 +08:00
interface Commands<ReturnType> {
superscript: {
/**
* Set a superscript mark
*/
2021-06-09 17:05:41 +08:00
setSuperscript: () => ReturnType,
/**
* Toggle a superscript mark
*/
2021-06-09 17:05:41 +08:00
toggleSuperscript: () => ReturnType,
/**
* Unset a superscript mark
*/
2021-06-09 17:05:41 +08:00
unsetSuperscript: () => ReturnType,
}
}
}
export const Superscript = Mark.create<SuperscriptExtensionOptions>({
name: 'superscript',
defaultOptions: {
HTMLAttributes: {},
},
parseHTML() {
return [
{
tag: 'sup',
},
{
style: 'vertical-align',
getAttrs(value) {
// Dont match this rule if the vertical align isnt super.
if (value !== 'super') {
return false
}
// If it falls through well match, and this mark will be applied.
},
},
]
},
renderHTML({ HTMLAttributes }) {
return ['sup', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
},
addCommands() {
return {
setSuperscript: () => ({ commands }) => {
return commands.setMark('superscript')
},
toggleSuperscript: () => ({ commands }) => {
return commands.toggleMark('superscript')
},
unsetSuperscript: () => ({ commands }) => {
return commands.unsetMark('superscript')
},
}
},
addKeyboardShortcuts() {
return {
'Mod-.': () => this.editor.commands.toggleSuperscript(),
}
},
})