mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
17 lines
342 B
JavaScript
17 lines
342 B
JavaScript
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('');
|
|
};
|