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.
17 lines
353 B
17 lines
353 B
#!/usr/bin/env node
|
|
/* eslint no-console:0 */
|
|
|
|
import { readFileSync } from 'fs'
|
|
import markdownit from '../index.mjs'
|
|
|
|
const md = markdownit({
|
|
html: true,
|
|
linkify: false,
|
|
typographer: false
|
|
})
|
|
|
|
const data = readFileSync(new URL('../test/fixtures/commonmark/spec.txt', import.meta.url), 'utf8')
|
|
|
|
for (let i = 0; i < 20; i++) {
|
|
md.render(data)
|
|
}
|
|
|