An open API service indexing awesome lists of open source software.

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.

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);

```