14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { MarkdownPlugin, remarkMdx, remarkMention } from '@platejs/markdown';
|
|
import { KEYS } from 'platejs';
|
|
import remarkGfm from 'remark-gfm';
|
|
import remarkMath from 'remark-math';
|
|
|
|
export const MarkdownKit = [
|
|
MarkdownPlugin.configure({
|
|
options: {
|
|
disallowedNodes: [KEYS.suggestion],
|
|
remarkPlugins: [remarkMath, remarkGfm, remarkMdx, remarkMention],
|
|
},
|
|
}),
|
|
];
|