-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.eleventy.js
150 lines (130 loc) · 4.45 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
const { DateTime } = require('luxon')
const fs = require('fs')
const pluginNavigation = require('@11ty/eleventy-navigation')
const markdownIt = require('markdown-it')
const markdownitlinkatt = require('markdown-it-link-attributes')
const pluginRss = require('@11ty/eleventy-plugin-rss')
const pluginSyntaxHighlight = require('@11ty/eleventy-plugin-syntaxhighlight')
const markdownItAnchor = require('markdown-it-anchor')
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy('./src/css/styles.css')
eleventyConfig.addPassthroughCopy('./src/browserconfig.xml')
eleventyConfig.addPassthroughCopy('./src/site.webmanifest')
eleventyConfig.addPassthroughCopy('./src/admin/config.yml')
eleventyConfig.addPassthroughCopy('./src/img')
eleventyConfig.addPlugin(pluginNavigation)
eleventyConfig.addPlugin(pluginRss)
eleventyConfig.addPlugin(pluginSyntaxHighlight)
eleventyConfig.setDataDeepMerge(true)
eleventyConfig.addShortcode('respimg', (path, alt, style) => {
const fetchBase = `https://res.cloudinary.com/${eleventyConfig.cloudinaryCloudName}/image/upload/`
const src = `${fetchBase}q_auto,f_auto,w_400/${path}.${eleventyConfig.format}`
const srcset = eleventyConfig.srcsetWidths
.map(({ w, v }) => {
return `${fetchBase}dpr_auto,q_auto,w_${w}/kailoon.com/${path}.${eleventyConfig.format} ${v}w`
})
.join(', ')
return `<img class="${
style ? style : ''
}" loading="lazy" src="${src}" srcset="${srcset}" alt="${
alt ? alt : ''
}" width="400" height="300" sizes="100vw">`
})
eleventyConfig.addShortcode('figure', (path, alt, caption) => {
const fetchBase = `https://res.cloudinary.com/${eleventyConfig.cloudinaryCloudName}/image/upload/`
const src = `${fetchBase}q_auto,f_auto,w_400/${path}.${eleventyConfig.format}`
const srcset = eleventyConfig.srcsetWidths
.map(({ w, v }) => {
return `${fetchBase}dpr_auto,q_auto,w_${w}/kailoon.com/${path}.${eleventyConfig.format} ${v}w`
})
.join(', ')
return `<figure class="mb-10"><img loading="lazy" src="${src}" srcset="${srcset}" alt="${
alt ? alt : ''
}" width="400" height="300"><figcaption class="text-center text-sm mt-3 text-gray-600 dark:text-gray-200">${
caption ? caption : ''
}</figcaption></figure>`
})
// https://github.com/eeeps/eleventy-respimg
eleventyConfig.cloudinaryCloudName = 'kailoon'
eleventyConfig.srcsetWidths = [
{ w: 400, v: 400 },
{ w: 600, v: 600 },
{ w: 768, v: 768 },
{ w: 820, v: 820 },
{ w: 1240, v: 1240 }
]
eleventyConfig.format = 'webp'
eleventyConfig.fallbackWidth = 800
/* Markdown Overrides */
let markdownLibrary = markdownIt({
html: true,
breaks: true
})
.use(markdownitlinkatt, {
pattern: /^(?!(https:\/\/kailoon\.com|#)).*$/gm,
attrs: {
target: '_blank',
rel: 'noreferrer'
}
})
.use(markdownItAnchor, {
permalink: markdownItAnchor.permalink.headerLink(),
permalinkClass: 'direct-link text-gray-400 dark:text-gray-600',
permalinkSymbol: '#',
permalinkAttrs: (slug, state) => ({
'aria-label': `permalink to ${slug}`,
title: 'Anchor link for easy sharing.'
})
})
eleventyConfig.setLibrary('md', markdownLibrary)
eleventyConfig.addFilter('readableDate', (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: 'utc' }).toFormat('dd LLL yyyy')
})
// https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-string
eleventyConfig.addFilter('htmlDateString', (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: 'utc' }).toFormat('yyyy-LL-dd')
})
// Get the first `n` elements of a collection.
eleventyConfig.addFilter('head', (array, n) => {
if (n < 0) {
return array.slice(n)
}
return array.slice(0, n)
})
eleventyConfig.addFilter('min', (...numbers) => {
return Math.min.apply(null, numbers)
})
eleventyConfig.addCollection('tagList', function (collection) {
let tagSet = new Set()
collection.getAll().forEach(function (item) {
if ('tags' in item.data) {
let tags = item.data.tags
tags = tags.filter(function (item) {
switch (item) {
// this list should match the `filter` list in tags.njk
case 'works':
case 'posts':
return false
}
return true
})
if (item.data.published) {
for (const tag of tags) {
tagSet.add(tag)
}
}
}
})
// returning an array in addCollection works in Eleventy 0.5.3
return [...tagSet]
})
return {
dir: {
input: 'src',
output: '_site',
data: '_data',
includes: '_components',
layouts: '_layouts'
}
}
}