Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mermaid | 55,886 | 505 | 317 | a day ago | 140 | September 13, 2022 | 852 | mit | JavaScript | |
Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown | ||||||||||
Marktext | 38,726 | 23 days ago | 1 | January 17, 2022 | 1,008 | mit | JavaScript | |||
📝A simple and elegant markdown editor, available for Linux, macOS and Windows. | ||||||||||
Stackedit | 19,997 | 2 | 1 | 2 months ago | 67 | March 29, 2021 | 669 | apache-2.0 | JavaScript | |
In-browser Markdown editor | ||||||||||
Tui.editor | 15,808 | 266 | 147 | 2 days ago | 38 | December 12, 2019 | 466 | mit | TypeScript | |
🍞📝 Markdown WYSIWYG Editor. GFM Standard + Chart & UML Extensible. | ||||||||||
Editor.md | 12,685 | 35 | 8 | 3 months ago | 1 | June 27, 2015 | 549 | mit | JavaScript | |
The open source embeddable online markdown editor (component). | ||||||||||
Leanote | 11,169 | a month ago | 516 | other | JavaScript | |||||
Not Just A Notepad! (golang + mongodb) http://leanote.org | ||||||||||
Vnote | 10,043 | a month ago | 547 | lgpl-3.0 | C++ | |||||
A pleasant note-taking platform. | ||||||||||
Simplemde Markdown Editor | 8,728 | 1,516 | 201 | a year ago | 13 | June 14, 2016 | 278 | mit | JavaScript | |
A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking. | ||||||||||
Laverna | 8,700 | 2 years ago | 2 | April 22, 2015 | 448 | mpl-2.0 | JavaScript | |||
Laverna is a JavaScript note taking application with Markdown editor and encryption support. Consider it like open source alternative to Evernote. | ||||||||||
Tinacms | 8,559 | 5 | 61 | 21 hours ago | 105 | September 21, 2022 | 80 | other | TypeScript | |
A headless CMS for Markdown |
Collaborative Editing the EASY way.
This module uses Commutative Replicated Data Structures, NO Operational Transforms.
see A commutative replicated data type for cooperative editing
and Logoot: a Scalable Optimistic Replication Algorithm for Collaborative P2P Networks
see r-edit/example
//client.js
var REdit = require('r-edit')
var r = REdit().wrap(textarea)
// or r.widget() <-- returns a new textarea (80x24)
var stream = shoe('/redit')
stream.pipe(r.createStream()).pipe(stream)
//server.js
var REdit = require('r-edit')
var r = REdit().wrap(textarea)
var stream = shoe('/redit')
shoe(function (stream) {
stream.pipe(r.createStream()).pipe(stream)
}).install(httpServer)
Create a widget that displays text as a subset of markdown.
var widget = require('r-edit/widget')
var e = new REdit()
document.body.appendChild(widget(e))
So far, only a few features are supported, headers, italics, bold, code, and bullet-points. but not syntax that must go over multiple lines, such as quotes, large code sections, or nested lists.
MIT