import lowlight from 'lowlight/lib/core' import CodeBlock, { CodeBlockOptions } from '@tiptap/extension-code-block' import { LowlightPlugin } from './lowlight-plugin' export interface CodeBlockLowlightOptions extends CodeBlockOptions { lowlight: any, } export const CodeBlockLowlight = CodeBlock.extend({ addOptions() { return { ...this.parent?.(), lowlight, } }, addProseMirrorPlugins() { return [ ...this.parent?.() || [], LowlightPlugin({ name: this.name, lowlight: this.options.lowlight, }), ] }, })