pnpm install eddies
The reason to use Eddies is very easy implementation. For those who don't want to build the whole editor from scratch, Eddies allows you to use editor with one line of code. Eddies has support for different types of markup (bold, italic, underline, etc.), also has visual components that make writing easier (bubble menu, text counter, etc.) and extensions (syntax highlighting, emojis). You can style the editor very easily with css variables or classes.
import { Editor } from "eddies";
export default function Page() {
return (
<div className="m-5">
<Editor />
</div>
);
}
Prop | Type | Description |
---|---|---|
className? |
string |
The class name to use for the editor. |
theme? |
"light" | "dark" |
Defines the editor's theme. |
showCharacterCount? |
boolean |
Show character count. |
limit? |
number |
The limit of characters. |
menu? |
boolean |
Shows menu above the editor. |
bubbleMenuItems? |
BubbleMenuItem[] |
Items that will be displayed in bubble menu. |
slashMenuCommands? |
SlashCommandItem[] |
Slash menu commands. |
onReady? |
(editor: EddiesEditor) => void |
Triggered when the editor is ready. |
onContentChange? |
(editor: EddiesEditor) => void |
Triggered on every content change. |
initialValue? |
Content |
Content shown every time the editor is created. |
extensions |
Extensions |
Extensions to add to the editor. |
placeholder? |
PlaceholderOptions |
The placeholder text when the editor is empty. |
isEditable? |
boolean |
Disables the editor. |
autofocus? |
FocusPosition |
Auto focus settings |
keyboardShortcuts? |
Record<string, KeyboardShortcutCommand> |
Custom keyboard shortcuts. |
tiptapOptions? |
Partial<TiptapEditorOptions> |
Editor props to pass to the editor. |
Pull requests and stars are always welcome. See contributing.md
for ways to get started.
This repository has a code of conduct
. By interacting with this repository, organization, or community you agree to abide by its terms.
Logo by iconixar