-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarkconf.js
More file actions
37 lines (33 loc) · 825 Bytes
/
Markconf.js
File metadata and controls
37 lines (33 loc) · 825 Bytes
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
const Markconf = {
includers: {
html: 'markserv-contrib-inc.html',
less: 'markserv-contrib-inc.less',
markdown: 'markserv-contrib-inc.markdown',
http: 'markserv-contrib-inc.http'
// svg: 'markserv-contrib-inc.svg',
},
modifiers: {
'**/': {
module: 'markserv-contrib-mod.dir',
templateUrl: 'partials/index.html'
},
'**/*.md': {
module: 'markserv-contrib-mod.markdown',
templateUrl: 'partials/index.html'
},
'**/*.html': {
module: 'markserv-contrib-mod.html'
},
// '**/*.+(js|json|yml)': {
// module: 'markserv-contrib-mod.code-highlight',
// templateUrl: 'partials/index.html'
// },
'**/*': 'markserv-contrib-mod.file',
404: 'markserv-contrib-mod.http-404'
},
// Merges w/ plugin payload data
overrides: {
MarkconfUrl: __filename
}
};
module.exports = Markconf;