Welcome to the Plate Playground!
Experience a modern rich-text editor built with Slate and React . This playground showcases just a part of Plate's capabilities. Explore the documentation to discover more.
Collaborative Editing
Review and refine content seamlessly. Use suggestions like this added text or to mark text for removal. Discuss changes using comments on many text segments. You can even have overlapping annotations!
AI-Powered Editing
- Generate content (continue writing, summarize, explain)
- Edit existing text (improve, fix grammar, change tone)
Rich Content Editing
Blockquotes are great for highlighting important information.
Create links , @mention users like
Alice
, or insert emojis ✨. Use the slash command (/) for quick access to elements.How Plate Compares
Plate offers many features out-of-the-box as free, open-source plugins.
Feature | Plate (Free & OSS) | Tiptap | |
|---|---|---|---|
AI | ✅ | Paid Extension | |
Comments | ✅ | Paid Extension | |
Suggestions | ✅ | Paid (Comments Pro) | |
Emoji Picker | ✅ | Paid Extension | |
Table of Contents | ✅ | Paid Extension | |
Drag Handle | ✅ | Paid Extension | |
Collaboration (Yjs) | ✅ | Hocuspocus (OSS/Paid) |
Images and Media
Embed rich media like images directly in your content. Supports Media uploads and drag & drop for a smooth experience.
Table of Contents
1
100%
Files
'use client';
import * as React from 'react';
import { Plate, usePlateEditor } from 'platejs/react';
import { EditorKit } from '@/components/editor/editor-kit';
import { Editor, EditorContainer } from '@/components/ui/editor';
import { DEMO_VALUES } from './values/demo-values';
export default function Demo({ id }: { id: string }) {
const editor = usePlateEditor({
plugins: EditorKit,
value: DEMO_VALUES[id],
});
return (
<Plate editor={editor}>
<EditorContainer variant="demo">
<Editor />
</EditorContainer>
</Plate>
);
}
playground-demo


Features
- Export editor content to:
- Client-side export with no server dependencies
Usage
Install the Export Toolbar Button component.
Plate Plus
- Server-side PDF export:
- High-quality PDF generation
- Custom fonts and styling
- Headers and footers
- Page numbers
- Font selectable
- Advanced export options:
- Paper size selection
- Margin controls
- Orientation settings
- Compression level
Try it out with our server-side PDF export:

