-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
224 lines (190 loc) · 6.21 KB
/
.eleventy.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
const readingTime = require('eleventy-plugin-reading-time')
const embedEverything = require("eleventy-plugin-embed-everything")
const pluginRss = require("@11ty/eleventy-plugin-rss")
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight")
const markdownIt = require("markdown-it")
const markdownItAnchor = require("markdown-it-anchor")
const markdownItFootnote = require("markdown-it-footnote")
const markdownItContainer = require("markdown-it-container")
const markdownItResponsive = require('@gerhobbelt/markdown-it-responsive')
const transforms = require('./utils/transforms.js')
const filters = require('./utils/filters.js')
const now = new Date()
module.exports = (config) => {
config.addPlugin(pluginRss)
config.addPlugin(pluginSyntaxHighlight)
config.addPlugin(readingTime)
config.addPlugin(embedEverything)
config.addWatchTarget("./assets/scss/")
// Transforms
Object.keys(transforms).forEach((transformName) => {
config.addTransform(transformName, transforms[transformName])
})
// Filters
Object.keys(filters).forEach((filterName) => {
config.addFilter(filterName, filters[filterName])
})
const isDraftOrIndex = (post) => {
if (post.data.draft) return false
if (post.inputPath.includes('/draft')) return true
if (post.inputPath.includes('draft.md')) return true
if (post.inputPath.includes('index.md')) return true
return false
}
// Custom collections
const livePosts = post => {
if (isDraftOrIndex(post)) return false
if (post.date <= now) return true
return false
}
const liveElements = post => {
if (isDraftOrIndex(post)) return false
return true
}
config.addPassthroughCopy("assets/favicon")
config.addPassthroughCopy({ 'assets/chrisspiegl.asc': 'chrisspiegl.asc' })
config.addCollection('posts', collection => {
return collection.getFilteredByGlob('./post/**/*.md').filter(_ => livePosts(_)).reverse()
})
config.addCollection('drafts', collection => {
return collection.getFilteredByGlob('./post/**/*.md').filter(_ => !livePosts(_)).reverse()
})
config.addCollection('books', (collection) => {
return collection.getFilteredByGlob('./book/**/*.md').filter(_ => liveElements(_)).reverse()
})
config.addCollection('movies', (collection) => {
return collection.getFilteredByGlob('./movie/**/*.md').filter(_ => liveElements(_)).reverse()
})
config.addCollection('gear', (collection) => {
return collection.getFilteredByGlob('./gear/**/*.md').filter(_ => liveElements(_)).reverse()
})
config.addCollection("tagList", collection => {
let uniqueTags = new Set()
collection.getAllSorted().forEach(function(item) {
// TODO: Currently this taglist thing shows all posts no matter that tag.
if (! ('tags' in item.data)) return
let tags = (typeof item.data.tags === 'string')
? [item.data.tags]
: item.data.tags
for (const tag of tags)
tag.startsWith('_') || uniqueTags.add(tag)
})
return [...uniqueTags]
})
// The ever-popular markdown filter.
let md = markdownIt({
html: true,
breaks: true,
linkify: true,
typographer: true,
})
config.addFilter("markdown", (content) => md.render(content))
md.use(markdownItAnchor, {
permalink: markdownItAnchor.permalink.headerLink({ safariReaderFix: true })
})
md.use(markdownItFootnote)
md.use(markdownItContainer, 'image-hero', { marker: '!' })
.use(markdownItContainer, 'signature', { marker: '!' })
.use(markdownItContainer, 'image-sbs', { marker: '!' })
.use(markdownItContainer, 'text-center', { marker: '!' })
.use(markdownItContainer, 'side-by-side', { marker: '!' })
.use(markdownItContainer, 'header-image-three', { marker: '!' })
.use(markdownItContainer, 'quote-hero', { marker: '!' })
.use(markdownItContainer, 'button', { marker: '!' })
.use(markdownItContainer, 'container', {
marker: '!',
validate: function (params) {
return true
},
render: function (tokens, idx) {
var m = tokens[idx].info.trim() // .match(/^well\s+(.*)$/)
if (tokens[idx].nesting === 1) {
// opening tag
let summary = m === '' ? '' : '<summary>' + md.renderInline(m) + '</summary>\n'
return '<details>' + summary + '<aside>'
} else {
// closing tag
return '</aside>\n</details>\n'
}
},
})
// Responsive Images inside Markdown
md.use(markdownItResponsive, {
responsive: {
srcset: {
"*.jpg": [
{
width: 320,
rename: { suffix: "-320w" },
},
{
width: 640,
rename: { suffix: "-640w" },
},
{
width: 1280,
rename: { suffix: "-1280w" },
},
{
width: 1920,
rename: { suffix: "-1920w" },
},
// {
// width: 3840,
// rename: { suffix: "-3840w" },
// },
],
"*.png": [
{
width: 320,
rename: { suffix: "-320w" },
},
{
width: 640,
rename: { suffix: "-640w" },
},
{
width: 1280,
rename: { suffix: "-1280w" },
},
{
width: 1920,
rename: { suffix: "-1920w" },
},
// {
// width: 3840,
// rename: { suffix: "-3840w" },
// },
],
},
sizes: {
// "*": "(max-width: 320px), (max-width: 640px), (max-width: 1280px), 1920px",
},
},
})
md.renderer.rules.footnote_caption = (tokens, idx) => {
let n = Number(tokens[idx].meta.id + 1).toString()
if (tokens[idx].meta.subId > 0) {
n += ":" + tokens[idx].meta.subId
}
return n
}
config.setLibrary("md", md)
return {
// dir: {
// output: "dist",
// input: "src",
// includes: "_includes", // These are inside the `input` directory
// data: "_data"
// },
// templateFormats: [
// "md",
// "njk",
// "html"
// ],
// dataTemplateEngine: "njk",
// htmlTemplateEngine: "njk",
markdownTemplateEngine: "njk",
passthroughFileCopy: true,
}
}