15 lines
431 B
JavaScript
15 lines
431 B
JavaScript
import { markInputRule } from '@tiptap/core';
|
|
import { Superscript } from '@tiptap/extension-superscript';
|
|
import { markInputRegex, extractMarkAttributesFromMatch } from '../services/mark_utils';
|
|
|
|
export default Superscript.extend({
|
|
addInputRules() {
|
|
return [
|
|
markInputRule({
|
|
find: markInputRegex('sup'),
|
|
type: this.type,
|
|
getAttributes: extractMarkAttributesFromMatch,
|
|
}),
|
|
];
|
|
},
|
|
});
|