fix(cli): should escape curly brackets in markdown (#12188)

This commit is contained in:
neverland 2023-08-14 16:53:28 +08:00 committed by GitHub
parent feba5e742f
commit 2b921f6123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,6 +64,8 @@ const markdownToVue = ({
let html = md.render(raw, { id });
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>`;
};