diff options
| author | Mahesh Sanikommmu <[email protected]> | 2025-08-16 18:50:10 -0700 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2025-08-16 18:50:10 -0700 |
| commit | 39003aff23d64ff1d96074d71521f6023c9bec01 (patch) | |
| tree | 3f870c04b3dce315bba1b21aa2da158494e71774 /apps/web/app/components/editor/plugins/basic-nodes-plugins.tsx | |
| parent | Merge pull request #355 from supermemoryai/archive (diff) | |
| download | supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.tar.xz supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.zip | |
New Version of Supermemory Consumer App
Diffstat (limited to 'apps/web/app/components/editor/plugins/basic-nodes-plugins.tsx')
| -rw-r--r-- | apps/web/app/components/editor/plugins/basic-nodes-plugins.tsx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/web/app/components/editor/plugins/basic-nodes-plugins.tsx b/apps/web/app/components/editor/plugins/basic-nodes-plugins.tsx deleted file mode 100644 index e336e24f..00000000 --- a/apps/web/app/components/editor/plugins/basic-nodes-plugins.tsx +++ /dev/null @@ -1,14 +0,0 @@ -'use client'; - -import { BasicMarksPlugin } from '@udecode/plate-basic-marks/react'; -import { BlockquotePlugin } from '@udecode/plate-block-quote/react'; -import { CodeBlockPlugin } from '@udecode/plate-code-block/react'; -import { HeadingPlugin } from '@udecode/plate-heading/react'; -import Prism from 'prismjs'; - -export const basicNodesPlugins = [ - HeadingPlugin.configure({ options: { levels: 3 } }), - BlockquotePlugin, - CodeBlockPlugin.configure({ options: { prism: Prism } }), - BasicMarksPlugin, -] as const; |