mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
perf(CLI): improve markdown compile performance (#12541)
This commit is contained in:
parent
5bc2f815af
commit
b49c640789
@ -49,13 +49,37 @@ const initMarkdownIt = () => {
|
|||||||
|
|
||||||
const md = initMarkdownIt();
|
const md = initMarkdownIt();
|
||||||
|
|
||||||
const markdownToVue = (raw) => {
|
const markdownToJs = (raw) => {
|
||||||
let html = md.render(raw);
|
let html = md.render(raw);
|
||||||
html = `<div class="van-doc-markdown-body">${html}</div>`;
|
|
||||||
html = markdownCardWrapper(html);
|
html = markdownCardWrapper(html);
|
||||||
// escape curly brackets
|
|
||||||
html = html.replace(/<code(.*?)>/g, '<code$1 v-pre>');
|
return `
|
||||||
return `<template>${html}</template>`;
|
import { openBlock, createElementBlock } from 'vue';
|
||||||
|
|
||||||
|
const _hoisted_1 = ['innerHTML'];
|
||||||
|
const html = ${JSON.stringify(html)};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
return { html: '' };
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
openBlock(),
|
||||||
|
createElementBlock(
|
||||||
|
'div',
|
||||||
|
{
|
||||||
|
class: 'van-doc-markdown-body',
|
||||||
|
innerHTML: html,
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8 /* PROPS */,
|
||||||
|
_hoisted_1,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
`
|
||||||
};
|
};
|
||||||
|
|
||||||
// add target="_blank" to all links
|
// add target="_blank" to all links
|
||||||
@ -78,5 +102,5 @@ function markdownLinkOpen(md) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = function (raw) {
|
module.exports = function (raw) {
|
||||||
return markdownToVue(raw);
|
return markdownToJs(raw);
|
||||||
};
|
};
|
||||||
|
@ -79,22 +79,8 @@ export async function compileSite(isProd = false) {
|
|||||||
templateParameters: getTemplateParams(),
|
templateParameters: getTemplateParams(),
|
||||||
},
|
},
|
||||||
tools: {
|
tools: {
|
||||||
bundlerChain(chain, { CHAIN_ID }) {
|
bundlerChain(chain) {
|
||||||
const vueRule = chain.module.rules
|
chain.module.rule('md').test(/\.md$/).use('md').loader(MD_LOADER);
|
||||||
.get(CHAIN_ID.RULE.VUE)
|
|
||||||
.use(CHAIN_ID.USE.VUE);
|
|
||||||
const vueLoader = vueRule.get('loader');
|
|
||||||
const vueOptions = vueRule.get('options');
|
|
||||||
|
|
||||||
chain.module
|
|
||||||
.rule('md')
|
|
||||||
.test(/\.md$/)
|
|
||||||
.use('vue')
|
|
||||||
.loader(vueLoader)
|
|
||||||
.options(vueOptions)
|
|
||||||
.end()
|
|
||||||
.use('md')
|
|
||||||
.loader(MD_LOADER);
|
|
||||||
},
|
},
|
||||||
rspack: {
|
rspack: {
|
||||||
plugins: [
|
plugins: [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user