-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
71 lines (55 loc) · 2.13 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
const path = require('node:path');
const url = require('node:url');
const {DateTime} = require('luxon');
const pluginRss = require("@11ty/eleventy-plugin-rss");
const pluginBundle = require("@11ty/eleventy-plugin-bundle");
const pluginNavigation = require("@11ty/eleventy-navigation");
const eleventy = require("@11ty/eleventy");
const sass = require("sass");
// Thanks to https://github.com/11ty/eleventy-base-blog
// for providing a lot of inspiration!
module.exports = function(config) {
config.addPassthroughCopy("static");
config.addPlugin(pluginRss);
config.addPlugin(pluginBundle);
config.addPlugin(pluginNavigation);
config.addPlugin(eleventy.EleventyHtmlBasePlugin);
config.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");
});
config.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');
});
config.addExtension("sass", {
outputFileExtension: "css",
compile: async function(inputContent, inputPath) {
if (path.basename(inputPath).startsWith('_')) {
// Don't compile SASS partials.
console.log(`Skipping ${inputPath}`)
return;
}
const inputUrl = url.pathToFileURL(inputPath);
const result = sass.compileString(
inputContent,
{
url: inputUrl,
syntax: 'indented'
});
return async (data) => result.css;
}
});
return {
dir: {
input: "content",
includes: "../_includes",
data: "../_data",
output: "_site",
},
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk",
templateFormats: ["html", "md", "njk", "sass"],
pathPrefix: "/",
}
}