-
Notifications
You must be signed in to change notification settings - Fork 50
/
vue.config.js
83 lines (80 loc) · 2.15 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const MarkdownItContainer = require('markdown-it-container');
const MarkdownItCheckBox = require('markdown-it-task-checkbox');
const MarkdownItDec = require('markdown-it-decorate');
/**
* 增加 hljs 的 classname
*/
const wrapCustomClass = function (render) {
return function (...args) {
return render(...args)
.replace('<code class="', '<code class="hljs ')
.replace('<code>', '<code class="hljs">');
};
};
const vueMarkdown = {
raw: true,
// 定义处理规则
preprocess: function (MarkdownIt, source) {
// 表格
MarkdownIt.renderer.rules.table_open = function () {
return '<table class="table">';
};
// ```html``` 给这种样式加个class hljs
MarkdownIt.renderer.rules.fence = wrapCustomClass(
MarkdownIt.renderer.rules.fence
);
// ```code``` 给这种样式加个class code_inline
const codeInline = MarkdownIt.renderer.rules.code_inline;
MarkdownIt.renderer.rules.code_inline = function (...args) {
args[0][args[1]].attrJoin('class', 'code_inline');
return codeInline(...args);
};
return source;
},
use: [
// 'markdown-it-container'的作用是自定义代码块
[
MarkdownItContainer,
'demo',
{
validate: params => params.trim().match(/^demo\s*(.*)$/),
render: function (tokens, idx) {
if (tokens[idx].nesting === 1) {
return `<demo-block>
<div slot="highlight">`;
}
return '</div></demo-block>\n';
}
}
],
[require('markdown-it-container'), 'tip'],
[require('markdown-it-container'), 'warning'],
[
MarkdownItCheckBox,
{
disabled: true
}
],
[MarkdownItDec]
]
};
module.exports = {
outputDir: 'dist',
publicPath: '/',
css: {
extract: true
},
// 扩展 webpack 配置,使 packages 加入编译
chainWebpack: config => {
config.module
.rule('md')
.test(/\.md/)
.use('vue-loader')
.loader('vue-loader')
.end()
.use('vue-markdown-loader')
.loader('vue-markdown-loader/lib/markdown-compiler')
.options(vueMarkdown);
},
productionSourceMap: false
};