Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

web-editor-markdown

Ben-love-zy17MIT1.0.8TypeScript support: included

A markdown editor in browser, supports collaborative editing

markdown, editor, web, Collaborative editing

readme

web-editor-markdown
A markdown editor in browser, supports collaborative editing

npm bundle size

💡 Web Editor Markdown

web-editor-markdown is a Markdown editor based on Web browser and real-time rendering like Typora. It is based on TypeScript and JavaScript, and does not rely on any third-party framework. It supports Chinese friendly and can be easily extended and connected to native JavaScript, Vue, React, Angular and other applications. It provides four rendering modes: SOURCE, SOURCE_AND_PREVIEW, RENDER and PREVIEW. If necessary, its underlying layer also supports the ability of collaborative editing and provides atomic Operation for extending collaborative editing.

✨ English Demo

✨ Chinese Demo

🛠️ Getting started

  • install it
    npm install web-editor-markdown --save
  • use it

    import { Editor, withUndoRedo } from "web-editor-markdown";
    let editor = new Editor(document.getElementById('id'));
    editor = withUndoRedo(editor); // UndoRedo Plugin
    editor.insertTextAtCursor('**This is a bold text**\n> tips:You can switch source mode with `cmd+/`');
  • others

    import { EditorViewMode } from "web-editor-markdown";
    editor.switchViewMode(EditorViewMode.PREVIEW); // switch rendering mode,(shortcut key: 'cmd+/')
    console.log('content', editor.getContent());
  • local source

    npm install
    npm start