marked-ts
A full-featured markdown parser and compiler, written in TypeScript.
This is fork of popular library marked
from this commit
(Merge pull request #961 from chjj/release-0.3.7, Dec 1, 2017).
For now - work in progress (there is only alpha.5 version).
Install
npm install marked-ts --save
Usage
Minimal usage:
import { Marked } from 'marked-ts';
console.log(Marked.parse('I am using __markdown__.'));
Example setting options with default values:
import { Marked, Renderer } from 'marked-ts';
Marked.setOptions
({
renderer: new Renderer,
gfm: true,
tables: true,
breaks: false,
pedantic: false,
sanitize: false,
smartLists: true,
smartypants: false
});
console.log(Marked.parse('I am using __markdown__.'));
API
Methods of Marked class and necessary types
static parse(src: string, options?: MarkedOptions): string;
static setOptions(options: MarkedOptions): this;
class MarkedOptions
{
gfm?: boolean = true;
tables?: boolean = true;
breaks?: boolean = false;
pedantic?: boolean = false;
sanitize?: boolean = false;
sanitizer?: (text: string) => string;
mangle?: boolean = true;
smartLists?: boolean = false;
silent?: boolean = false;
highlight?: (code: string, lang?: string) => string;
langPrefix?: string = 'lang-';
smartypants?: boolean = false;
headerPrefix?: string = '';
renderer?: Renderer;
xhtml?: boolean = false;
escape?: (html: string, encode?: boolean) => string = escape;
unescape?: (html: string) => string = unescape;
}
Example usage with highlight.js
npm install highlight.js @types/highlight.js --save
A function to highlight code blocks:
import { Marked } from 'marked-ts';
import { highlightAuto } from 'highlight.js';
let md = '```js\n console.log("hello"); \n```';
Marked.setOptions({ highlight: code => highlightAuto(code).value });
console.log(Marked.parse(md));
Overriding renderer methods
The renderer option allows you to render tokens in a custom manner. Here is an
example of overriding the default heading token rendering by adding custom head id:
import { Marked, Renderer, MarkedOptions } from 'marked-ts';
const markedOptions: MarkedOptions = {};
const renderer = new Renderer(markedOptions);
renderer.heading = function (text, level)
{
const patt = /\s?{([^}]+)}$/;
const link = patt.exec(text);
let linkStr: string;
if(link && link.length && link[1])
{
text = text.replace(patt, '');
linkStr = link[1];
}
else
{
linkStr = text.toLocaleLowerCase().replace(/[^\wа-яіїє]+/gi, '-');
}
return '<h' + level + ' id="' + linkStr + '">' + text + '</h' + level + '>';
};
markedOptions.renderer = renderer;
Marked.setOptions(markedOptions);
console.log(Marked.parse('# heading {my-custom-hash}'));
This code will output the following HTML:
<h1 id="my-custom-hash">heading</h1>
Renderer methods API
code(code: string, lang?: string, escaped?: boolean): string;
blockquote(quote: string): string;
html(html: string): string;
heading(text: string, level: number, raw: string): string;
hr(): string;
list(body: string, ordered?: boolean): string;
listitem(text: string): string;
paragraph(text: string): string;
table(header: string, body: string): string;
tablerow(content: string): string;
tablecell(content: string, flags: {header?: boolean, align?: 'center' | 'left' | 'right'}): string;
strong(text: string): string;
em(text: string): string;
codespan(text: string): string;
br(): string;
del(text: string): string;
link(href: string, title: string, text: string): string;
image(href: string, title: string, text: string): string;
text(text: string): string;
Philosophy behind marked
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 unnecessarily long time.
Marked is very concise and still implements all markdown features.
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.
Along with implementing every markdown feature, marked also implements GFM
features.
Benchmarks
node v8.9.x
git clone https://github.com/KostyaTretyak/marked-ts.git
cd marked-ts
npm install
npm run compile
npm run bench
By default, these benchmarks run the entire markdown test suite once. The test suite includes every markdown feature,
it doesn't cater to specific aspects.
Lib | Load lib, ms | Init lib, ms | Bench work, ms | Total, ms | Memory usage, KB |
---|
marked-ts alpha.5 | 6 | 6 | 101 | 113 | 8 641 |
marked v0.3.9 | 4 | 2 | 106 | 112 | 9 323 |
remarkable v1.7.1 | 36 | 6 | 174 | 216 | 15 356 |
markdown-it v8.4.0 | 29 | 10 | 227 | 266 | 18 890 |
showdown v1.8.6 | 10 | 14 | 353 | 377 | 36 833 |
markdown v0.5.0 | 4 | 3 | 314 | 321 | 22 664 |
Options for benchmarks
-l, --length Approximate string length in kilobytes. Default ~ 300 KB.
-t, --times Number of runs this bench. Default - 1 times.
Test files are accumulated in one file. If you specify, for example, --length 100
the first file will be taken, checked whether it is longer than 100 kilobytes,
and if no - it will be attached to the next one and checked its length, and so on.
Example of usage bench options
In order for npm passing the parameters, they need to be separated via --
:
npm run bench -- -l 500 -t 1
Contribution and License Agreement
If you contribute code to this project, you are implicitly allowing your code
to be distributed under the MIT license. You are also implicitly verifying that
all code is your original work. </legalese>
License
Copyright (c) 2011-2014, Christopher Jeffrey. (MIT License)
Copyright (c) 2018, Костя Третяк. (MIT License)
See LICENSE for more info.