-
Notifications
You must be signed in to change notification settings - Fork 21
/
.eleventy.js
309 lines (294 loc) · 9.17 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
const pluginSEO = require("eleventy-plugin-seo");
//const { DateTime } = require("luxon");
const markdownIt = require("markdown-it");
const markdown_options = {
html: true,
linkify: true,
typographer: true,
breaks: false
};
const anchor = require('markdown-it-anchor');
const pluginRss = require("@11ty/eleventy-plugin-rss");
const svgContents = require("eleventy-plugin-svg-contents");
const embedEverything = require("eleventy-plugin-embed-everything");
const embedCodePen = require("@manustays/eleventy-plugin-codepen-iframe");
const syntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
const imagesResponsiver = require("eleventy-plugin-images-responsiver");
const readingTime = require('eleventy-plugin-reading-time');
const eleventyPluginFilesMinifier = require("@sherby/eleventy-plugin-files-minifier");
const { EleventyHtmlBasePlugin } = require("@11ty/eleventy");
//const { series } = require("gulp");
const fs = require('fs');
require('dotenv').config();
const PRODUCTION = process.env.NODE_ENV === "production";
const EVENTS = JSON.parse(fs.readFileSync("./src/_data/speaking_engagements.json"));
function getEventDate(id){
return EVENTS.filter(event=>event.id.toString()===id.toString())[0].date;
}
module.exports = config => {
// Cloudinary
config.cloudinaryCloudName = "aarongustafson";
config.hostname = "https://www.aaron-gustafson.com";
// Markdown
let md = markdownIt(markdown_options)
.use( anchor, {
permalink: anchor.permalink.ariaHidden({
placement: 'before'
})
})
.use(require("markdown-it-attrs"))
.use(require('markdown-it-footnote'));
md.renderer.rules.footnote_block_open = () => (
'<hr class="footnotes-sep">\n' +
'<section class="footnotes">\n' +
'<h4 class="hidden">Footnotes</h4>\n' +
'<ol class="footnotes-list">\n'
);
md.renderer.rules.footnote_caption = (tokens, idx/*, options, env, slf*/) => {
var 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 );
// Layout aliases
config.addLayoutAlias("base", "layouts/base.html");
config.addLayoutAlias("blog", "layouts/blog.html");
config.addLayoutAlias("home", "layouts/home.html");
config.addLayoutAlias("link", "layouts/link.html");
config.addLayoutAlias("page", "layouts/page.html");
config.addLayoutAlias("post", "layouts/post.html");
config.addLayoutAlias("tag", "layouts/tag.html");
config.addLayoutAlias("talk", "layouts/talk.html");
config.addLayoutAlias("tank", "layouts/tank.html");
// Passthru
config.addPassthroughCopy({ "src/static": "/" });
// Plugins
config.addPlugin(pluginSEO, require("./src/_data/seo.json"));
config.addPlugin(svgContents);
// config.addPlugin(EleventyHtmlBasePlugin, {
// baseHref: PRODUCTION ? "https://www.aaron-gustafson.com" : ""
// });
config.addPlugin(embedEverything, {
twitter: {
options: {
cacheText: true
}
}
});
config.addPlugin(syntaxHighlight, {
preAttributes: { tabindex: 0 }
});
config.addPlugin(readingTime);
config.addPlugin(imagesResponsiver, {
hero: {
sizes: '(min-width:60em) 700px, (max-width: 60em) 100vw',
resizedImageUrl: (src, width) => {
return PRODUCTION ? `https://res.cloudinary.com/aarongustafson/image/fetch/q_auto,f_auto,w_${width}/${src}` : src.replace(config.hostname,"");
},
attributes: {
width: "960",
height: "960",
decoding: "async",
fetchpriority: "high",
loading: "eager"
},
},
thumbnail: {
sizes: '100px',
resizedImageUrl: (src) => {
return PRODUCTION ?
`https://res.cloudinary.com/aarongustafson/image/fetch/q_100,f_auto,w_100,h_100,c_fill/${encodeURIComponent(src)}`
:
src.replace(config.hostname,"");
},
attributes: {
loading: 'lazy',
width: "100",
height: "100",
decoding: "async",
fetchpriority: "low"
},
},
ignore: {},
default: {
sizes: '(min-width:60em) 700px, (max-width: 60em) 100vw',
resizedImageUrl: (src, width) => {
return PRODUCTION ? `https://res.cloudinary.com/aarongustafson/image/fetch/q_auto,f_auto,w_${width}/${src}` : src.replace(config.hostname,"");
},
attributes: {
loading: 'lazy',
decoding: "async",
fetchpriority: "high"
},
},
});
config.addPlugin(embedCodePen);
config.addPlugin(pluginRss, {
posthtmlRenderOptions: {
singleTags: ['img', 'hr', 'input'],
closingSingleTag: "slash"
}
});
config.addPlugin(syntaxHighlight);
config.addPlugin(eleventyPluginFilesMinifier);
// Filters
config.addFilter("getNewestCollectionItemDate", pluginRss.getNewestCollectionItemDate);
config.addFilter("absoluteUrl", pluginRss.absoluteUrl);
config.addFilter("htmlToAbsoluteUrls", pluginRss.htmlToAbsoluteUrls);
config.addFilter("dateToRfc3339", pluginRss.dateToRfc3339);
config.addFilter("markdownify", text => {
return md.renderInline( text );
});
const filters = require('./_11ty/filters');
Object.keys(filters).forEach(filterName => {
config.addFilter(filterName, filters[filterName]);
});
// Collections
config.addCollection("notebook", collectionApi => {
return collectionApi
.getFilteredByGlob(["**/posts/*.md", "**/links/*.md"])
.reverse();
});
config.addCollection("posts", collectionApi => {
return collectionApi
.getFilteredByGlob("**/posts/*.md")
.reverse();
});
config.addCollection("links", collectionApi => {
return collectionApi
.getFilteredByGlob("**/links/*.md")
.reverse();
});
config.addCollection("talks", collectionApi => {
return collectionApi
.getFilteredByGlob("**/talks/*.md")
// sort by date - descending
.sort(function(a, b) {
return b.date - a.date;
});
});
config.addCollection("articles", collectionApi => {
return collectionApi
.getFilteredByGlob("**/articles/*.md")
// sort by date - descending
.sort(function(a, b) {
return b.date - a.date;
});
});
config.addCollection("books", collectionApi => {
return collectionApi
.getFilteredByGlob("**/books/*.md")
// sort by date - descending
.sort(function(a, b) {
return b.date - a.date;
});
});
config.addCollection("press", collectionApi => {
return collectionApi
.getFilteredByGlob("**/press/*.md")
// sort by date - descending
.sort(function(a, b) {
return b.date - a.date;
});
});
config.addCollection("podcasts", collectionApi => {
return collectionApi
.getFilteredByGlob("**/podcasts/*.md")
// sort by date - descending
.sort(function(a, b) {
return b.date - a.date;
});
});
config.addCollection("feedAll", collectionApi => {
return collectionApi
.getFilteredByGlob(["**/posts/*.md", "**/links/*.md", "**/talks/*.md", "**/articles/*.md", "**/books/*.md", "**/podcasts/*.md", "**/press/*.md"])
// sort by date - descending
.sort(function(a, b) {
return b.date - a.date;
});
});
config.addCollection("sitemap", function(collectionApi) {
// get unsorted items
return collectionApi
.getAll()
.filter( item => ( "sitemap" in item.data && item.data.sitemap === true ) )
.sort( (a,b) => {
a = a.url.substring( 1 );
b = b.url.substring( 1 );
return a < b ? -1 : a > b ? 1 : 0;
});
});
function filterTagList(tags) {
return (tags || []).filter(tag => ["all", "nav", "post", "posts"].indexOf(tag) === -1);
}
config.addCollection("tags", function(collectionApi) {
let tagSet = new Set();
collectionApi.getAll()
.forEach(item => {
(item.data.tags || []).forEach(tag => tagSet.add(tag));
});
tagSet = filterTagList([...tagSet]);
tagSet.sort((a,b)=>{
return a.localeCompare(b, 'en', {'sensitivity': 'base'});
});
// Generate a series JSON
fs.writeFile("./_cache/tags.json", JSON.stringify(tagSet,false, 2), err => {
if (err) throw err;
});
return tagSet;
});
config.addCollection("series", function(collectionApi) {
let series = {};
collectionApi.getAll()
.forEach(item => {
if ( "series" in item.data &&
"tag" in item.data.series &&
! ( item.data.series.tag in series ) )
{
series[item.data.series.tag] = item.data.series.name;
}
});
// Generate a series JSON
fs.writeFile("./_cache/series.json", JSON.stringify(series, false, 2), err => {
if (err) throw err;
});
// Build series files
for ( let tag in series ) {
let tagName = tag.replace("series-", "");
let filename = `./src/series/${tagName}.md`;
if (!fs.existsSync(filename)) {
let content = `---\ntitle: "${series[tag]}"\ndescription: ""\ntag: ${tag}\n---`;
fs.writeFile(filename, content, err => {
if (err) throw err;
console.log(`New series file created: ${filename}`);
});
}
}
return series;
});
// Front Matter
config.setFrontMatterParsingOptions({
excerpt: true,
excerpt_separator: "<!-- more -->"
});
// Nunjucks
config.setNunjucksEnvironmentOptions({
//throwOnUndefined: true,
trimBlocks: true,
lstripBlocks: true
});
// Upgrade Helper
// config.addPlugin(require("@11ty/eleventy-upgrade-help"));
// Config
return {
markdownTemplateEngine: "njk",
dataTemplateEngine: "njk",
htmlTemplateEngine: "njk",
dir: {
input: "src",
output: "dist"
}
};
};