* add new addOptions option * replace defaultOptions with addOptions for all extensions * replace defaultOptions with addOptions for all demos * replace defaultOptions with addOptions in docs * refactoring * refactoring * drop object support for addOptions * fix optional options * fix tests
27 lines
605 B
TypeScript
27 lines
605 B
TypeScript
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<CodeBlockLowlightOptions>({
|
|
addOptions() {
|
|
return {
|
|
...this.parent?.(),
|
|
lowlight,
|
|
}
|
|
},
|
|
|
|
addProseMirrorPlugins() {
|
|
return [
|
|
...this.parent?.() || [],
|
|
LowlightPlugin({
|
|
name: this.name,
|
|
lowlight: this.options.lowlight,
|
|
}),
|
|
]
|
|
},
|
|
})
|