mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import Mention from "@tiptap/extension-mention";
|
|
import suggestion from "./suggestion";
|
|
|
|
export const Mentions = Mention.configure({
|
|
HTMLAttributes: {
|
|
class: 'mention',
|
|
},
|
|
suggestion: suggestion,
|
|
})
|