-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
162 lines (136 loc) · 5.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
const {DateTime} = require("luxon");
const path = require('path');
const postcss = require('postcss');
const tailwindcss = require('tailwindcss');
const autoprefixer = require('autoprefixer');
const markdownItImage = require("markdown-it-eleventy-img");
const Image = require("@11ty/eleventy-img");
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
const {EleventyHtmlBasePlugin} = require("@11ty/eleventy");
const toImageTag = async (src = 'static/assets/noimage.jpg', alt = "", widths = [300], extraAttributes = {}) => {
if (!src) {
src = "static/assets/noimage.jpg";
}
let attributes = {
src: src.replace('/assets/', 'static/assets/'),
widths: widths,
alt: alt || "",
...extraAttributes
}
const imageOptions = {
// We only need the original width and format
widths: attributes.widths,
formats: ['avif', 'png', 'webp', 'jpeg'],
// Where the generated image files get saved
outputDir: '_site/assets/images',
// Public URL path that's referenced in the img tag's src attribute
urlPath: '/assets/images',
};
// generate images, while this is async we don’t wait
let metadata = await Image(attributes.src, imageOptions);
return Image.generateHTML(metadata, {
sizes: '100vw',
loading: 'lazy',
decoding: 'async',
...attributes,
});
};
module.exports = eleventyConfig => {
eleventyConfig.addNunjucksAsyncFilter('postcss', (cssCode, done) => {
postcss([tailwindcss(require('./tailwind.config.js')), autoprefixer()])
.process(cssCode, {from: './_includes/tailwind.css'})
.then(
(r) => done(null, r.css),
(e) => done(e, null)
);
});
eleventyConfig.addWatchTarget('_includes/**/*.css');
eleventyConfig.addPassthroughCopy({
"./public/": "/",
"./attachments/": "/assets/",
"./static/assets/": "/assets/",
// "./node_modules/prismjs/themes/prism-okaidia.css": "/css/prism-okaidia.css"
});
eleventyConfig.addPassthroughCopy('decks')
eleventyConfig.addAsyncShortcode('toImageTag', toImageTag)
eleventyConfig.addFilter("absoluteUrl", function (url = "") {
const baseUrl = process.env.OVERRIDE_BASE_URL || `https://presentations.gavinmogan.com`;
try {
return new URL(url, baseUrl).href;
} catch (err) {
console.error(err);
return url;
}
});
eleventyConfig.addFilter("toUpperCase", value => value.toUpperCase())
eleventyConfig.addFilter("ucFirst", value => value.charAt(0).toUpperCase() + value.slice(1))
// Customize Markdown library settings:
eleventyConfig.amendLibrary("md", mdLib => {
mdLib.use(markdownItImage, {
resolvePath: (filepath, env) => path.join(path.dirname(env.page.inputPath), filepath),
imgOptions: {
widths: [800, 500, 300],
urlPath: "/images/",
outputDir: path.join("_site", "images"),
formats: ["avif", "webp", "jpeg"]
},
globalAttributes: {
class: "markdown-image",
decoding: "async",
// If you use multiple widths,
// don't forget to add a `sizes` attribute.
sizes: "100vw"
}
});
});
// Official plugins
eleventyConfig.addPlugin(pluginSyntaxHighlight, {
preAttributes: {tabindex: 0}
});
eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
// Filters
eleventyConfig.addFilter("readableDate", (dateObj, format, zone) => {
// Formatting tokens for Luxon: https://moment.github.io/luxon/#/formatting?id=table-of-tokens
return DateTime.fromJSDate(dateObj, {zone: zone || "utc"}).toFormat(format || "dd LLLL yyyy");
});
eleventyConfig.addFilter('htmlDateString', (dateObj) => {
// dateObj input: https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-string
return DateTime.fromJSDate(dateObj, {zone: 'utc'}).toFormat('yyyy-LL-dd');
});
eleventyConfig.addFilter('toJSON', (data) => {
return JSON.stringify(data, null, "\t");
})
eleventyConfig.addFilter("filterTagList", function filterTagList(tags) {
return (tags || []).filter(tag => ["all", "presentations"].indexOf(tag) === -1);
});
return {
// Control which files Eleventy will process
// e.g.: *.md, *.njk, *.html, *.liquid
templateFormats: [
"md",
"njk",
"html",
"liquid"
],
// Pre-process *.md files with: (default: `liquid`)
markdownTemplateEngine: false,
// Pre-process *.html files with: (default: `liquid`)
htmlTemplateEngine: "njk",
// These are all optional:
dir: {
input: "content", // default: "."
includes: "../_includes", // default: "_includes"
data: "../_data", // default: "_data"
output: "_site"
},
// -----------------------------------------------------------------
// Optional items:
// -----------------------------------------------------------------
// If your site deploys to a subdirectory, change `pathPrefix`.
// Read more: https://www.11ty.dev/docs/config/#deploy-to-a-subdirectory-with-a-path-prefix
// When paired with the HTML <base> plugin https://www.11ty.dev/docs/plugins/html-base/
// it will transform any absolute URLs in your HTML to include this
// folder name and does **not** affect where things go in the output folder.
pathPrefix: "/",
};
};