https://github.com/sojebsikder/seditor
Seditor is a simple library for rich text editing with plugin architecture.
https://github.com/sojebsikder/seditor
plugin-architecture rich-text-editor wysiwyg-editor
Last synced: 11 months ago
JSON representation
Seditor is a simple library for rich text editing with plugin architecture.
- Host: GitHub
- URL: https://github.com/sojebsikder/seditor
- Owner: SojebSikder
- Created: 2025-05-30T04:40:34.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-06-09T13:52:09.000Z (11 months ago)
- Last Synced: 2025-06-09T14:43:34.639Z (11 months ago)
- Topics: plugin-architecture, rich-text-editor, wysiwyg-editor
- Language: TypeScript
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
Seditor is a library for rich text editing with plugin architecture.
# Usage
A simple usage with plugins
```html
Hello world!
const editor = new Editor("#seditor-toolbar", "#seditor-editor");
editor.use(undoRedoPlugin);
editor.use(formattingPlugin);
editor.use(fontPlugin);
editor.use(colorPickerPlugin);
```