mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
const MarkdownIt = require('markdown-it');
|
|
const markdownItAnchor = require('markdown-it-anchor');
|
|
const highlight = require('./highlight');
|
|
const { slugify } = require('transliteration');
|
|
|
|
const parser = new MarkdownIt({
|
|
html: true,
|
|
highlight,
|
|
}).use(markdownItAnchor, {
|
|
level: 2,
|
|
slugify,
|
|
});
|
|
|
|
module.exports = parser;
|