mirror of
https://github.com/youzan/vant.git
synced 2025-10-17 00:14:18 +00:00
refactor(CLI): integrate Rsbuild to build website (#12481)
This commit is contained in:
82
packages/vant-cli/cjs/md-loader.cjs
Normal file
82
packages/vant-cli/cjs/md-loader.cjs
Normal file
@@ -0,0 +1,82 @@
|
||||
const hljs = require('highlight.js');
|
||||
const MarkdownIt = require('markdown-it');
|
||||
|
||||
function markdownCardWrapper(htmlCode) {
|
||||
const group = htmlCode
|
||||
.replace(/<h3/g, ':::<h3')
|
||||
.replace(/<h2/g, ':::<h2')
|
||||
.split(':::');
|
||||
|
||||
return group
|
||||
.map((fragment) => {
|
||||
if (fragment.indexOf('<h3') !== -1) {
|
||||
return `<div class="van-doc-card">${fragment}</div>`;
|
||||
}
|
||||
|
||||
return fragment;
|
||||
})
|
||||
.join('');
|
||||
}
|
||||
|
||||
function markdownHighlight(str, lang) {
|
||||
if (lang && hljs.getLanguage(lang)) {
|
||||
// https://github.com/highlightjs/highlight.js/issues/2277
|
||||
return hljs.highlight(str, { language: lang, ignoreIllegals: true }).value;
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
const initMarkdownIt = () => {
|
||||
const md = new MarkdownIt({
|
||||
html: true,
|
||||
linkify: true,
|
||||
typographer: false,
|
||||
highlight: markdownHighlight,
|
||||
});
|
||||
|
||||
const { slugify } = require('transliteration');
|
||||
const markdownItAnchor = require('markdown-it-anchor');
|
||||
|
||||
markdownLinkOpen(md);
|
||||
|
||||
md.use(markdownItAnchor, {
|
||||
level: 2,
|
||||
slugify,
|
||||
});
|
||||
|
||||
return md;
|
||||
};
|
||||
|
||||
const md = initMarkdownIt();
|
||||
|
||||
const markdownToVue = (raw) => {
|
||||
let html = md.render(raw);
|
||||
html = `<div class="van-doc-markdown-body">${html}</div>`;
|
||||
html = markdownCardWrapper(html);
|
||||
// escape curly brackets
|
||||
html = html.replace(/<code(.*?)>/g, '<code$1 v-pre>');
|
||||
return `<template>${html}</template>`;
|
||||
};
|
||||
|
||||
// add target="_blank" to all links
|
||||
function markdownLinkOpen(md) {
|
||||
const defaultRender = md.renderer.rules.link_open;
|
||||
|
||||
md.renderer.rules.link_open = (tokens, idx, options, env, self) => {
|
||||
const aIndex = tokens[idx].attrIndex('target');
|
||||
|
||||
if (aIndex < 0) {
|
||||
tokens[idx].attrPush(['target', '_blank']); // add new attribute
|
||||
}
|
||||
|
||||
if (defaultRender) {
|
||||
return defaultRender(tokens, idx, options, env, self);
|
||||
}
|
||||
|
||||
return self.renderToken(tokens, idx, options);
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = function (raw) {
|
||||
return markdownToVue(raw);
|
||||
};
|
Reference in New Issue
Block a user