Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
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.
18 lines
352 B
18 lines
352 B
1 year ago
|
#!/usr/bin/env node
|
||
|
/*eslint no-console:0*/
|
||
|
|
||
|
import { readFileSync } from 'fs';
|
||
|
import markdownit from '../index.mjs';
|
||
|
|
||
|
var md = markdownit({
|
||
|
html: true,
|
||
|
linkify: false,
|
||
|
typographer: false
|
||
|
});
|
||
|
|
||
|
var data = readFileSync(new URL('../test/fixtures/commonmark/spec.txt', import.meta.url), 'utf8');
|
||
|
|
||
|
for (var i = 0; i < 20; i++) {
|
||
|
md.render(data);
|
||
|
}
|