You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

let hljs;
hljs = require('../highlight/index');
const config = require('../../config'),
mdOption = (()=>{
let result = {
html: true,
xhtmlOut: true,
typographer: true,
breaks: true,
};
if(config.highlight.length && hljs){
result.highlight = (code,lang,callback)=>{
let lineLen = code.split(/\r|\n/ig).length,
result = hljs.highlightAuto(code).value;
if(config.showLineNumber){
let lineStr = (()=>{
let str = `<ul class="h2w__lineNum">`;
for(let i=0;i<lineLen-1;i++){
str += `<li class="h2w__lineNumLine">${i+1}</li>`
};
str += `</ul>`;
return str;
})();
return lineStr + result;
};
return result;
}
};
return result;
})(),
md = require('./markdown')(mdOption);
// 应用Markdown解析扩展包括自定义组件['sub','sup','ins','mark','emoji','todo','latex','yuml','echarts']
[...config.markdown,...config.components].forEach(item => {
if(!/^audio-player|table|todogroup|img$/.test(item)){
md.use(require(`./plugins/${item}`));
};
});
// 定义emoji渲染规则
md.renderer.rules.emoji = (token,index)=>{
let item = token[index];
return `<g-emoji class="h2w__emoji h2w__emoji--${item.markup}">${item.content}</g-emoji>`;
};
// 导出模块
module.exports = str => {
return md.render(str);
};