-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmetalsmith.json
59 lines (59 loc) · 1.57 KB
/
metalsmith.json
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
{
"source": "src",
"destination": "build",
"metadata": {
"site": {
"url": "http://nwjs.io/"
}
},
"plugins": {
"metalsmith-static": {
"src" : "public",
"dest": "."
},
"metalsmith-metadata": {
"config": "config.json"
},
"metalsmith-collections": {
"blogs": {
"pattern": "blog/**/*.md",
"sortBy": "date",
"reverse": true,
"refer": false
}
},
"metalsmith-markdown": true,
"metalsmith-babel": {
"presets": [
"react"
],
"comments": true
},
"metalsmith-sass": {
"outputStyle": "expanded"
},
"metalsmith-permalinks": {
"relative": false
},
"metalsmith-prism": true,
"metalsmith-layouts": {
"directory": "templates/layouts",
"partials": "templates/partials",
"engine" : "handlebars",
"default" : "blog-layout.hbs",
"pattern": ["**/*.md", "**/*.html"]
},
"metalsmith-in-place": {
"directory": "templates/layouts",
"partials": "templates/partials",
"engine" : "handlebars",
"default" : "blog-layout.hbs",
"pattern": ["**/*.md", "**/*.html"]
},
"metalsmith-feed": {
"collection": "blogs",
"destination": "feed/blog.xml",
"title": "NW.js Blog"
}
}
}