perf(CLI): improve markdown compile performance (#12541)

This commit is contained in:
neverland 2023-12-31 19:39:45 +08:00 committed by GitHub
parent 5bc2f815af
commit b49c640789
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 22 deletions

View File

@ -49,13 +49,37 @@ const initMarkdownIt = () => {
const md = initMarkdownIt();
const markdownToVue = (raw) => {
const markdownToJs = (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>`;
return `
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
@ -78,5 +102,5 @@ function markdownLinkOpen(md) {
}
module.exports = function (raw) {
return markdownToVue(raw);
return markdownToJs(raw);
};

View File

@ -79,22 +79,8 @@ export async function compileSite(isProd = false) {
templateParameters: getTemplateParams(),
},
tools: {
bundlerChain(chain, { CHAIN_ID }) {
const vueRule = chain.module.rules
.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);
bundlerChain(chain) {
chain.module.rule('md').test(/\.md$/).use('md').loader(MD_LOADER);
},
rspack: {
plugins: [