zhtzhtx / web-editor-markdown

A Markdown editor in browser with collaborative editing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

npm bundle size

💡 Web Editor Markdown

web-editor-markdown is a Markdown editor in Web browser and for 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

About

A Markdown editor in browser with collaborative editing

License:MIT License


Languages

Language:TypeScript 94.0%Language:JavaScript 4.1%Language:Less 1.9%