返回 presentation-ai
math-kit.tsx
根目录 / src / components / plate / plugins / math-kit.tsx
1 "use client";
2
3 import { EquationPlugin, InlineEquationPlugin } from "@platejs/math/react";
4
5 import {
6 EquationElement,
7 InlineEquationElement,
8 } from "@/components/plate/ui/equation-node";
9
10 export const MathKit = [
11 InlineEquationPlugin.withComponent(InlineEquationElement),
12 EquationPlugin.withComponent(EquationElement),
13 ];
14
14 lines Plain Text