mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
83 lines
1.9 KiB
JavaScript
83 lines
1.9 KiB
JavaScript
const hljs = require('highlight.js');
|
|
const MarkdownIt = require('markdown-it');
|
|
|
|
function markdownCardWrapper(htmlCode) {
|
|
const group = htmlCode
|
|
.replace(/<h3/g, ':::<h3')
|
|
.replace(/<h2/g, ':::<h2')
|
|
.split(':::');
|
|
|
|
return group
|
|
.map((fragment) => {
|
|
if (fragment.indexOf('<h3') !== -1) {
|
|
return `<div class="van-doc-card">${fragment}</div>`;
|
|
}
|
|
|
|
return fragment;
|
|
})
|
|
.join('');
|
|
}
|
|
|
|
function markdownHighlight(str, lang) {
|
|
if (lang && hljs.getLanguage(lang)) {
|
|
// https://github.com/highlightjs/highlight.js/issues/2277
|
|
return hljs.highlight(str, { language: lang, ignoreIllegals: true }).value;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
const initMarkdownIt = () => {
|
|
const md = new MarkdownIt({
|
|
html: true,
|
|
linkify: true,
|
|
typographer: false,
|
|
highlight: markdownHighlight,
|
|
});
|
|
|
|
const { slugify } = require('transliteration');
|
|
const markdownItAnchor = require('markdown-it-anchor');
|
|
|
|
markdownLinkOpen(md);
|
|
|
|
md.use(markdownItAnchor, {
|
|
level: 2,
|
|
slugify,
|
|
});
|
|
|
|
return md;
|
|
};
|
|
|
|
const md = initMarkdownIt();
|
|
|
|
const markdownToVue = (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>`;
|
|
};
|
|
|
|
// add target="_blank" to all links
|
|
function markdownLinkOpen(md) {
|
|
const defaultRender = md.renderer.rules.link_open;
|
|
|
|
md.renderer.rules.link_open = (tokens, idx, options, env, self) => {
|
|
const aIndex = tokens[idx].attrIndex('target');
|
|
|
|
if (aIndex < 0) {
|
|
tokens[idx].attrPush(['target', '_blank']); // add new attribute
|
|
}
|
|
|
|
if (defaultRender) {
|
|
return defaultRender(tokens, idx, options, env, self);
|
|
}
|
|
|
|
return self.renderToken(tokens, idx, options);
|
|
};
|
|
}
|
|
|
|
module.exports = function (raw) {
|
|
return markdownToVue(raw);
|
|
};
|