-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmarkdown-implementations.yml
More file actions
247 lines (227 loc) · 8 KB
/
markdown-implementations.yml
File metadata and controls
247 lines (227 loc) · 8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# Markdown Resources: Implementations
# ===================================
# Copyright 2013–2016 © Dr Wouter Soudan @ Rhythmus.be
# Licensed under a Creative Commons Attribution 3.0 License.
#
# Document address: https://github.com/rhythmus/markdown-resources/markdown-implementations.yml
# Last revision: 2016-01-13 17:45 GMT+1
#
# The following list is far from exhaustive: it’s a (personal,
# and hence, subjective) curated selection of the “best”
# Markdown implementations (parser, converters, e.a.).
# Search on GitHub for more:
# - https://github.com/search?q=markdown&nwo=fletcher#2Fpeg-multimarkdown&search_target=global&ref=cmdform
# Also have a look at the list maintained (?) by the W3C Markdown Community Group:
# - http://www.w3.org/community/markdown/wiki/MarkdownImplementations
# And here for Javascript implementations and wrappers:
# - http://www.plugingeek.com/categories/markdown-parsers-javascript
---
Markdown.pl:
description: Original reference implementation
type: converter to (X)HTML
output: xhtml
supported dialects:
- plain Markdown
customizable: no
developers:
- name: John Gruber
website: http://daringfireball.net/
website: http://daringfireball.net/projects/markdown/
language: Perl
parser type: hardcoded regexes
maintenance: abandoned
Pandoc:
description: Universal document converter. If you need to convert files from one markup format into another, pandoc is your swiss-army knife. Pandoc can convert documents from markdown, reStructuredText, textile, HTML, DocBook, LaTeX, MediaWiki markup, OPML, or Haddock markup.
output: xhtml, docx, odt, odl, ePUB, DocBook, OPML, LaTeX, ConTeXt, pdf, Markdown, reStructuredText, AsciiDoc, MediaWiki markup, Emacs Org-Mode, Textile
developers:
- name: John MacFarlane
GitHub: https://github.com/jgm/
website: http://johnmacfarlane.net
repo: https://github.com/jgm/pandoc
website: http://johnmacfarlane.net/pandoc/
language: Haskell
parser type: PEG grammar
maintenance: active
Cheapskate:
description: Experimental markdown processor in Haskell. This is an experimental Markdown processor in pure Haskell. (A cheapskate is always in search of the best markdown.) It aims to process Markdown efficiently and in the most forgiving possible way. It is about seven times faster than pandoc and uses a fifth the memory. It is also faster, and considerably more accurate, than the markdown package on Hackage.
developers:
- name: John MacFarlane
GitHub: https://github.com/jgm/
website: http://johnmacfarlane.net
repo: https://github.com/jgm/cheapskate
language: Haskell
maintenance: active
Texts.js:
description: JavaScript library (for Node and for browser) that implements conversion between various “rich” text formats. It does the conversion via universal text model (TextJSON, see below) that is rich enough for most of the texts.
type: Node.js module
output: xhtml, XeLaTeX, Pandoc JSON
developers:
- name: Fedor Sheremetyev
GitHub: https://github.com/sheremetyev/
Twitter: "@shrmtv"
repo: https://github.com/sheremetyev/texts.js
language: Javascript
parser type: PEG grammar
mdown-parse-pegjs:
description: Parsing Markdown with PegJS
developers:
- name: Ulric Wilfred (aka Anton Kotenko)
GitHub: https://github.com/shamansir
Twitter: "@shaman_sir"
repo: https://github.com/shamansir/mdown-parse-pegjs
language: Javascript
parser type: PEG grammar
peg-markdown:
supported dialects:
- plain Markdown
developers:
- name: John MacFarlane
GitHub: https://github.com/jgm/
website: http://johnmacfarlane.net/
repo: https://github.com/jgm/peg-markdown
language: C
parser type: PEG grammar
peg-multimarkdown:
supported dialects:
- MultiMarkdown
developers:
- name: Fletcher T. Penney
GitHub: https://github.com/fletcher/
website: http://fletcherpenney.net/
repo: https://github.com/fletcher/peg-multimarkdown
language: C
parser type: PEG grammar
maintenance: deprecated
markdown-js:
supported dialects:
- many
customizable: yes
developers:
- name: Dominic Baggott
GitHub: https://github.com/evilstreak
website: http://www.dominicbaggott.com
repo: https://github.com/evilstreak/markdown-js
language: Javascript
parser type: PEG grammar
maintenance: active
marked:
supported dialects:
- plain Markdown
- Github Flavored Markdown
developers:
- name: Christopher Jeffrey
GitHub: https://github.com/chjj
website: https://dilated.io/
repo: https://github.com/chjj/marked
language: Javascript
parser type: hardcoded regexes
maintenance: active
Discount:
supported dialects:
- plain Markdown
developers:
- name: David Parsons
GitHub: https://github.com/Orc
website: http://weblog.pell.portland.or.us/~orc/
website: http://www.pell.portland.or.us/~orc/Code/discount/
repo: https://github.com/Orc/discount
language: C
parser type:
maintenance:
Pagedown:
supported dialects:
- plain Markdown
repo:
- https://code.google.com/p/pagedown
- https://github.com/ujifgc/pagedown
language: Javascript
Showdown:
supported dialects:
- plain Markdown
repo:
- https://github.com/coreyti/showdown
- http://wayback.archive.org/web/*/http://attacklab.net/showdown
language: Javascript
Python Markdown:
website: https://pythonhosted.org/Markdown/
repo: https://github.com/waylan/Python-Markdown
language: Python
Parsedown:
supported dialects:
- plain Markdown
- GFM
- Markdown Extra
website: http://parsedown.org/
repo: https://github.com/erusev/parsedown
demo: http://parsedown.org/demo
description: fast and extensible
parser type: regexes
developers:
- name: Emanuil Rusev
GitHub: https://github.com/erusev
language: php
note: https://news.ycombinator.com/item?id=7783501
Mistune:
website: http://mistune.readthedocs.org/en/latest/
repo: https://github.com/lepture/mistune
description: “The fastest markdown parser in pure Python, inspired by marked.”
developers:
- name: Hsiaoming Yang
GitHub: https://github.com/lepture
language: Python
markdown:
supported dialects:
- plain Markdown
- GFM
repo: https://github.com/cebe/markdown
description: “A set of PHP classes, each representing a Markdown flavor, and a command line tool for converting markdown files to HTML files.”
developers:
- name: Carsten Brandt
GitHub: https://github.com/cebe
language: php
sundown:
repo: https://github.com/vmg/sundown
description: “Standards compliant, fast, secure markdown processing library in C”
developers:
- name: Vicent Marti
GitHub: https://github.com/vmg
language: C
kramdown:
description: Ruby library for parsing and converting a superset of Markdown.
input: Markdown, kramdown, html
output: html, kramdown, LaTeX, pdf
supported dialects:
- plain Markdown
- Markdown Extra
- Maruku
developers:
- name: Thomas Leitner
GitHub: https://github.com/gettalong
e-Mail: t_leitner@gmx.at
repo: https://github.com/gettalong/kramdown
website: http://kramdown.gettalong.org/
language: Ruby
license: MIT
Strictdown:
description: A Strictdown parser and compiler written in Javascript. Built for web browsers and Node.js™
developers:
- name: Jak Wings
GitHub: https://github.com/jakwings
repo: https://github.com/jakwings/strictdown
website: http://jakwings.github.io/strictdown/Syntax.html
demo: http://jakwings.github.io/strictdown/demo.html
language: Javascript
license: MIT
Madoko:
description: "Madoko is a fast javascript Markdown processor written in Koka It has great support to create beautiful scholarly and industrial documents in both HTML and PDF."
supported dialects:
- Madoko
developers:
- name: Daan Leijen
CodePlex: http://www.codeplex.com/site/users/view/daan
e-Mail: daan@microsoft.com
repo: http://madoko.codeplex.com/
website: https://www.madoko.net/
language: Javascript Koka
license: Apache License 2.0
...