mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
"use client";
|
|
|
|
import { IndentPlugin } from "@platejs/indent/react";
|
|
import { KEYS } from "platejs";
|
|
|
|
export const IndentKit = [
|
|
IndentPlugin.configure({
|
|
inject: {
|
|
targetPlugins: [...KEYS.heading, KEYS.p, KEYS.blockquote, KEYS.codeBlock, KEYS.toggle],
|
|
},
|
|
}),
|
|
];
|