SurfSense/surfsense_web/components/editor/plugins/link-kit.tsx

16 lines
337 B
TypeScript
Raw Normal View History

2026-02-17 12:47:39 +05:30
"use client";
2026-02-17 12:47:39 +05:30
import { LinkPlugin } from "@platejs/link/react";
2026-02-17 12:47:39 +05:30
import { LinkElement } from "@/components/ui/link-node";
import { LinkFloatingToolbar } from "@/components/ui/link-toolbar";
export const LinkKit = [
2026-02-17 12:47:39 +05:30
LinkPlugin.configure({
render: {
node: LinkElement,
afterEditable: () => <LinkFloatingToolbar />,
},
}),
];