Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fantasticit/sailkit
A toolkit editor suite based on tiptap and prosemirror.
https://github.com/fantasticit/sailkit
javas prosemirror react rich-text-editor typescript
Last synced: 13 days ago
JSON representation
A toolkit editor suite based on tiptap and prosemirror.
- Host: GitHub
- URL: https://github.com/fantasticit/sailkit
- Owner: fantasticit
- Created: 2024-03-29T14:24:17.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T13:45:22.000Z (4 months ago)
- Last Synced: 2024-07-08T16:54:35.347Z (4 months ago)
- Topics: javas, prosemirror, react, rich-text-editor, typescript
- Language: TypeScript
- Homepage:
- Size: 932 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Sailkit
Sailkit is a toolkit editor suite based on tiptap and prosemirror.# Example code (React)
```typescript
import { EditorContent, useEditor } from "@sailkit/react";
import { Document } from "@sailkit/document";
import { TextKit } from "@sailkit/text-kit";
import { BlockTile } from "@sailkit/blocktile";
import { Uuid } from "@sailkit/uuid";export const Editor = () => {
const editor = useEditor({
extensions: [
Document.extend({ content: "blockTile+" }),
Uuid,
BlockTile,
TextKit,
],
});return (
);
};
```