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

https://github.com/longlongago2/arch-editor

Rich text editor with a high degree of customization
https://github.com/longlongago2/arch-editor

draft-js editor react rich-text-editor

Last synced: 12 months ago
JSON representation

Rich text editor with a high degree of customization

Awesome Lists containing this project

README

          

# ArchEditor

Rich text editor with customizable layout

## Documention

[简体中文](README.zh.md) | [English](README.md)

## Software Architecture

- Use React.js
- Based on Draft.js

## Installation

`npm install arch-editor --save`

#### Usage

```js
import React from 'react';
import ReactDOM from 'react-dom';
import 'arch-editor/dist/arch-editor.css';
import { ArchEditor, BlockToolbar, ArchEditorProvider } from 'arch-editor';

function App() {
return (



;
);
}

ReactDOM.render(,document.getElementById('root'));
```