arch-editor

Rich text editor with a high degree of customization.

Usage no npm install needed!

<script type="module">
  import archEditor from 'https://cdn.skypack.dev/arch-editor';
</script>

README

ArchEditor

Rich text editor with customizable layout

Documention

简体中文 | English

Software Architecture

  • Use React.js
  • Based on Draft.js

Installation

npm install arch-editor --save

Usage

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 (
    <ArchEditorProvider>
      <BlockToolbar />
      <ArchEditor placeholder="Please enter text." showInlineToolbar />
    </ArchEditorProvider>;
  );
}

ReactDOM.render(<App />,document.getElementById('root'));