Revert "chore: remove @vant/markdown-loader package"

This reverts commit 6eec7f3c2f.
This commit is contained in:
chenjiahan
2021-09-30 10:32:29 +08:00
parent 7c45604f8f
commit 6a054ca0e3
10 changed files with 508 additions and 0 deletions
@@ -0,0 +1,16 @@
module.exports = function cardWrapper(html) {
const group = html
.replace(/<h3/g, ':::<h3')
.replace(/<h2/g, ':::<h2')
.split(':::');
return group
.map(fragment => {
if (fragment.indexOf('<h3') !== -1) {
return `<div class="card">${fragment}</div>`;
}
return fragment;
})
.join('');
};