Closed yurenchen000 closed 7 years ago
Looked into this today.
The popular Rich Text Editors are
However, asking about markdown on prosemirror gave this:
Which provides:
So seems Typora is built off the gfm mode of codemirror - with a lot of custom enhancements - like autocomplete, prettier theming, and hiding of markdown when not needed
HackMD is a pretty collaborative markdown editor that uses these codemirror modes:
and is open-source, so perhaps HackMD could become competition to Typora at one stage
Two others are:
Enquired about drafts support for markdown over at https://github.com/facebook/draft-js/issues/946
found slate today, http://slatejs.org/#/markdown-preview?_k=rnkc07 - it is pretty far along
@balupton thanks, here is some engine i used
https://michelf.ca/projects/php-markdown/
php implement
// at first i use this for several month, meet some error, update 2 times, turn to Parsedown
http://parsedown.org
php implement, fast and stable, syntax like GFM
and support some feature config
// i change to this half year, works fine, still in use
Textile and Markdown Hybrid for Ruby
http://whytheluckystiff.net/ruby/redcloth/
ruby implement, syntax like GFM
// i found it from redmine src, works fine
Typora use its own markdown engine, and try to be compatible with Github Flavored Markdown.
You could use GFM
for blogging. In most case, user can ignore those difference.
Also see discussion in https://github.com/typora/typora-issues/issues/369
I tried to type equations that work well in typora but not work in Github pages
how does typora calc word count?
the
markdown
andsyntax highlight
worked very well, if it is possible, I want to use them into my blog, in order to get the same looks .( seems base on
atom
? found packages inresources
folder )thanks