mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
16 lines
279 B
TypeScript
16 lines
279 B
TypeScript
import { Code as TiptapCode } from "@tiptap/extension-code"
|
|
|
|
export const Code = TiptapCode.extend({
|
|
addOptions() {
|
|
return {
|
|
...this.parent?.(),
|
|
HTMLAttributes: {
|
|
class: "inline",
|
|
spellCheck: "false",
|
|
},
|
|
}
|
|
},
|
|
})
|
|
|
|
export default Code
|