mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
3.2 KiB
126 lines
3.2 KiB
13 years ago
|
# marked
|
||
|
|
||
|
A full-featured markdown parser and compiler, written in javascript.
|
||
|
Built for speed.
|
||
|
|
||
|
## Benchmarks
|
||
|
|
||
|
node v0.4.x
|
||
|
|
||
|
``` bash
|
||
|
$ node test --bench
|
||
|
marked completed in 12071ms.
|
||
|
showdown (reuse converter) completed in 27387ms.
|
||
|
showdown (new converter) completed in 75617ms.
|
||
|
markdown-js completed in 70069ms.
|
||
|
```
|
||
|
|
||
|
node v0.6.x
|
||
|
|
||
|
``` bash
|
||
|
$ node test --bench
|
||
|
marked completed in 6448ms.
|
||
|
marked (gfm) completed in 7357ms.
|
||
|
marked (pedantic) completed in 6092ms.
|
||
|
discount completed in 7314ms.
|
||
|
showdown (reuse converter) completed in 16018ms.
|
||
|
showdown (new converter) completed in 18234ms.
|
||
|
markdown-js completed in 24270ms.
|
||
|
```
|
||
|
|
||
|
__Marked is now faster than Discount, which is written in C.__
|
||
|
|
||
|
For those feeling skeptical: These benchmarks run the entire markdown test suite
|
||
|
1000 times. The test suite tests every feature. It doesn't cater to specific
|
||
|
aspects.
|
||
|
|
||
|
## Install
|
||
|
|
||
|
``` bash
|
||
|
$ npm install marked
|
||
|
```
|
||
|
|
||
|
## Another Javascript Markdown Parser
|
||
|
|
||
|
The point of marked was to create a markdown compiler where it was possible to
|
||
|
frequently parse huge chunks of markdown without having to worry about
|
||
|
caching the compiled output somehow...or blocking for an unnecesarily long time.
|
||
|
|
||
|
marked is very concise and still implements all markdown features. It is also
|
||
|
now fully compatible with the client-side.
|
||
|
|
||
|
marked more or less passes the official markdown test suite in its
|
||
|
entirety. This is important because a surprising number of markdown compilers
|
||
|
cannot pass more than a few tests. It was very difficult to get marked as
|
||
|
compliant as it is. It could have cut corners in several areas for the sake
|
||
|
of performance, but did not in order to be exactly what you expect in terms
|
||
|
of a markdown rendering. In fact, this is why marked could be considered at a
|
||
|
disadvantage in the benchmarks above.
|
||
|
|
||
|
Along with implementing every markdown feature, marked also implements
|
||
|
[GFM features](http://github.github.com/github-flavored-markdown/).
|
||
|
|
||
|
## Options
|
||
|
|
||
|
marked has 4 different switches which change behavior.
|
||
|
|
||
|
- __pedantic__: Conform to obscure parts of `markdown.pl` as much as possible.
|
||
|
Don't fix any of the original markdown bugs or poor behavior.
|
||
|
- __gfm__: Enable github flavored markdown (enabled by default).
|
||
|
- __sanitize__: Sanitize the output. Ignore any HTML that has been input.
|
||
|
- __highlight__: A callback to highlight code blocks.
|
||
|
|
||
|
None of the above are mutually exclusive/inclusive.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
``` js
|
||
|
// Set default options
|
||
|
marked.setOptions({
|
||
|
gfm: true,
|
||
|
pedantic: false,
|
||
|
sanitize: true,
|
||
|
// callback for code highlighter
|
||
|
highlight: function(code, lang) {
|
||
|
if (lang === 'js') {
|
||
|
return javascriptHighlighter(code);
|
||
|
}
|
||
|
return code;
|
||
|
}
|
||
|
});
|
||
|
console.log(marked('i am using __markdown__.'));
|
||
|
```
|
||
|
|
||
|
You also have direct access to the lexer and parser if you so desire.
|
||
|
|
||
|
``` js
|
||
|
var tokens = marked.lexer(text);
|
||
|
console.log(marked.parser(tokens));
|
||
|
```
|
||
|
|
||
|
``` bash
|
||
|
$ node
|
||
|
> require('marked').lexer('> i am using marked.')
|
||
|
[ { type: 'blockquote_start' },
|
||
|
{ type: 'paragraph',
|
||
|
text: 'i am using marked.' },
|
||
|
{ type: 'blockquote_end' },
|
||
|
links: {} ]
|
||
|
```
|
||
|
|
||
|
## CLI
|
||
|
|
||
|
``` bash
|
||
|
$ marked -o hello.html
|
||
|
hello world
|
||
|
^D
|
||
|
$ cat hello.html
|
||
|
<p>hello world</p>
|
||
|
```
|
||
|
|
||
|
## License
|
||
|
|
||
|
Copyright (c) 2011-2012, Christopher Jeffrey. (MIT License)
|
||
|
|
||
|
See LICENSE for more info.
|