-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmetalsmith.json
More file actions
99 lines (99 loc) · 2.27 KB
/
metalsmith.json
File metadata and controls
99 lines (99 loc) · 2.27 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"source": "./src",
"destination": "./build",
"clean": false,
"metadata": {
"site": {
"title": "Lost Type Co-op Blog",
"description": "Articles, resources, inspiration, and lessons learned by contributors to the Lost Type Co-op.",
"url": "http://blog.losttype.com",
"author": {
"name": "Lost Type Co-op",
"url": "http://losttype.com",
"social": {
"twitter": "losttypecoop",
"instagram": "losttypecoop",
"github": "losttype"
}
}
}
},
"plugins": {
"metalsmith-jekyll-dates": {},
"metalsmith-collections": {
"posts": {
"pattern": "*-*-*-*.md",
"reverse": true,
"sortBy": "date"
},
"fieldtripslc": {
"reverse": true,
"sortBy": "date"
},
"fieldtripphl": {
"reverse": true,
"sortBy": "date"
},
"fieldtripvan": {
"reverse": true,
"sortBy": "date"
},
"fieldtripchi": {
"reverse": true,
"sortBy": "date"
},
"fieldtripam": {
"reverse": true,
"sortBy": "date"
},
"fieldtripny": {
"reverse": true,
"sortBy": "date"
},
"fieldtripsf": {
"reverse": true,
"sortBy": "date"
}
},
"metalsmith-collections-paginate": {
"posts": {
"perPage": 10,
"template": "index.hbs",
"first": "index.html",
"path": "page/:num/index.html"
}
},
"metalsmith-markdown": {},
"metalsmith-better-excerpts": {
"stripTags": true,
"pruneLength": 200,
"pruneString": "…"
},
"metalsmith-tags": {
"handle": "fonts",
"path": "fonts-in-use/:tag/index.html",
"template": "tag.hbs",
"sortBy": "date",
"reverse": true
},
"metalsmith-metadata": {
"authors": "authors.json"
},
"metalsmith-register-helpers": {
"directory": "_helpers"
},
"metalsmith-register-partials": {
"directory": "_includes"
},
"metalsmith-handlebars-within": {},
"metalsmith-templates": {
"engine": "handlebars",
"directory": "_templates"
},
"metalsmith-typogr": {},
"metalsmith-permalinks": {
"relative": false,
"pattern": ":slug"
}
}
}