@ts-stack/markdown
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).
lang
Table of contents
Install
npm install @ts-stack/markdown --save
Usage
Minimal usage:
import { Marked } from '@ts-stack/markdown';
console.log(Marked.parse('I am using __markdown__.'));
Example setting options with default values:
import { Marked, Renderer } from '@ts-stack/markdown';
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__.'));
Example usage with highlight.js
npm install highlight.js --save
npm install @types/highlight.js -D
A function to highlight code blocks:
import { Marked } from '@ts-stack/markdown';
import { highlight } from 'highlight.js';
Marked.setOptions({ highlight: (code, lang) => highlight(lang, code).value });
let md = '```js\n console.log("hello"); \n```';
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 } from '@ts-stack/markdown';
class MyRenderer extends Renderer
{
heading(text: string, level: number, raw: string)
{
const regexp = /\s*{([^}]+)}$/;
const execArr = regexp.exec(text);
let id: string;
if(execArr)
{
text = text.replace(regexp, '');
id = execArr[1];
}
else
{
id = text.toLocaleLowerCase().replace(/[^\wа-яіїє]+/gi, '-');
}
return `<h${level} id="${id}">${text}</h${level}>`;
}
}
Marked.setOptions({renderer: new MyRenderer});
console.log(Marked.parse('# heading {my-custom-hash}'));
This code will output the following HTML:
<h1 id="my-custom-hash">heading</h1>
See also Renderer methods API.
Example of setting a simple block rule
If you do not need recursiveness or checks some conditions before execute a regular expression, you can use the
Marked.setBlockRule( regexp[, callback] )
method, which takes a regular expression as the first argument,
and returns result regexp.exec(string)
to callback(execArr)
, which can be passed as a second argument.
In regular expression very important adding symbol ^
from start. You should do this anyway.
import { Marked, escape } from '@ts-stack/markdown';
import * as katex from 'katex';
Marked.setBlockRule(/^@@@ *(\w+)\n([\s\S]+?)\n@@@/, function (execArr) {
const channel = execArr[1];
const content = execArr[2];
switch(channel)
{
case 'youtube':
{
const id = escape(content);
return `\n<iframe width="420" height="315" src="https://www.youtube.com/embed/${id}"></iframe>\n`;
}
case 'katex':
{
return katex.renderToString(escape(content));
}
default:
{
const msg = `[Error: a channel "${channel}" for an embedded code is not recognized]`;
return '<div style="color: red">' + msg + '</div>';
}
}
});
const blockStr = `
# Example usage with embed block code
@@@ katex
c = \\pm\\sqrt{a^2 + b^2}
@@@
@@@ youtube
JgwnkM5WwWE
@@@
`;
const html = Marked.parse(blockStr);
console.log(html);
API
Methods of Marked class and necessary types
static parse(src: string, options?: MarkedOptions): string;
static debug(src: string, options?: MarkedOptions): {result: string, tokens: Token[], links: Links};
static setOptions(options: MarkedOptions): this;
interface Token
{
type: number | string;
text?: string;
lang?: string;
depth?: number;
header?: string[];
align?: ('center' | 'left' | 'right')[];
cells?: string[][];
ordered?: boolean;
pre?: boolean;
escaped?: boolean;
execArr?: RegExpExecArray;
line?: number;
}
enum TokenType
{
space = 1
,text
,paragraph
,heading
,listStart
,listEnd
,looseItemStart
,looseItemEnd
,listItemStart
,listItemEnd
,blockquoteStart
,blockquoteEnd
,code
,table
,html
,hr
}
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;
isNoP?: boolean;
}
Renderer methods API
code(code: string, lang?: string, escaped?: boolean, meta?: string): 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;
Benchmarks
node v8.9.x
git clone https://github.com/ts-stack/markdown.git
cd markdown
npm install
npx lerna bootstrap
npm run build:bench
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 | Lib load, ms | Lib init, ms | Bench work, ms | Total, ms |
---|
@ts-stack/markdown v1.0.0-beta.4 | 5 | 4 | 84 | 93 |
marked v0.8.0 | 5 | 7 | 86 | 98 |
markdown v0.5.0 | 2 | 2 | 128 | 132 |
remarkable v2.0.0 | 5 | 2 | 136 | 143 |
commonmark v0.29.1 | 19 | 3 | 148 | 170 |
markdown-it v10.0.0 | 24 | 3 | 176 | 203 |
showdown v1.8.6 | 4 | 7 | 408 | 419 |
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-2021, Костя Третяк. (MIT License)
See LICENSE for more info.