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.
14 lines
405 B
14 lines
405 B
import markdownit from '../../../index.mjs'
|
|
|
|
const md = markdownit('commonmark')
|
|
|
|
// Replace normalizers to more primitive, for more "honest" compare.
|
|
// Default ones can cause 1.5x slowdown.
|
|
const encode = md.utils.lib.mdurl.encode
|
|
|
|
md.normalizeLink = function (url) { return encode(url) }
|
|
md.normalizeLinkText = function (str) { return str }
|
|
|
|
export function run (data) {
|
|
return md.render(data)
|
|
}
|
|
|