| 1 | "use client"; |
| 2 | |
| 3 | import { IndentPlugin } from "@platejs/indent/react"; |
| 4 | import { KEYS } from "platejs"; |
| 5 | |
| 6 | export const IndentKit = [ |
| 7 | IndentPlugin.configure({ |
| 8 | inject: { |
| 9 | targetPlugins: [ |
| 10 | ...KEYS.heading, |
| 11 | KEYS.p, |
| 12 | KEYS.blockquote, |
| 13 | KEYS.codeBlock, |
| 14 | KEYS.toggle, |
| 15 | ], |
| 16 | }, |
| 17 | options: { |
| 18 | offset: 24, |
| 19 | }, |
| 20 | }), |
| 21 | ]; |
| 22 |