返回 presentation-ai
generating-plugin.tsx
根目录 / src / components / notebook / presentation / editor / plugins / generating-plugin.tsx
1 import { createTPlatePlugin } from "platejs/react";
2
3 import { GeneratingLeaf } from "../custom-elements/generating-leaf";
4
5 /** Enables support for bold formatting */
6 export const GeneratingPlugin = createTPlatePlugin({
7 key: "generating",
8 node: { isLeaf: true, component: GeneratingLeaf },
9 });
10
10 lines Plain Text