forked from a11yproject/a11yproject.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
executable file
·148 lines (126 loc) · 4.33 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
const pluginRss = require("@11ty/eleventy-plugin-rss");
const eleventyNavigationPlugin = require("@11ty/eleventy-navigation");
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
const eleventyPluginTOC = require("eleventy-plugin-nesting-toc");
const slugify = require("slugify");
const htmlmin = require("html-minifier");
module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(pluginRss);
eleventyConfig.addPlugin(pluginSyntaxHighlight);
eleventyConfig.addPlugin(eleventyNavigationPlugin);
eleventyConfig.addPlugin(eleventyPluginTOC, {
wrapper: "div",
tags: ["h2", "h3"],
wrapperClass: "l-toc",
});
eleventyConfig.setDataDeepMerge(true);
eleventyConfig.addLayoutAlias("post", "layouts/post.njk");
// https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-string
eleventyConfig.addFilter("htmlDateString", (dateObj) => {
return dateObj.toISOString();
});
/**
* Returns a humnan-readable date
E.g. May 31, 2019
*/
eleventyConfig.addFilter("dateReadable", (value) => {
const date = new Date(value);
const utcDate = new Date(
date.getUTCFullYear(),
date.getUTCMonth(),
date.getUTCDate()
);
const formatOpts = {
timezone: "UTC",
day: "numeric",
month: "long",
year: "numeric",
};
return new Intl.DateTimeFormat("en-US", formatOpts).format(utcDate);
});
// 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("getPostsByAuthor", (posts, author) => {
return posts.filter((a) => {
return a.data.author === author;
});
});
// only content in the `posts/` directory
eleventyConfig.addCollection("posts", function (collection) {
return collection.getFilteredByGlob("./src/posts/*").sort(function (a, b) {
return a.date - b.date;
});
});
// Universal slug filter strips unsafe chars from URLs
eleventyConfig.addFilter("slugify", function (str) {
return slugify(str.replace(/<\/?("[^"]*"|'[^']*'|[^>])*(>|$)/g, ""), {
lower: true,
replacement: "-",
remove: /[*+~.·,()'"`´%!?¿:@»]/g,
});
});
// Directories
eleventyConfig.addPassthroughCopy("./src/fonts");
// Social Media
eleventyConfig.addPassthroughCopy("./src/apple-touch-icon.png");
eleventyConfig.addPassthroughCopy("./src/favicon.svg");
eleventyConfig.addPassthroughCopy("./src/logo.svg");
eleventyConfig.addPassthroughCopy("./src/logo-100x100.png");
eleventyConfig.addPassthroughCopy("./src/logo-192x192.png");
eleventyConfig.addPassthroughCopy("./src/logo-192x192.png");
eleventyConfig.addPassthroughCopy("./src/logo-512x512.png");
eleventyConfig.addPassthroughCopy("./src/safari-pinned-tab.svg");
eleventyConfig.addPassthroughCopy("./src/favicon.ico");
// Config
eleventyConfig.addPassthroughCopy("./src/humans.txt");
eleventyConfig.addPassthroughCopy("./src/manifest.json");
eleventyConfig.addPassthroughCopy("./src/robots.txt");
eleventyConfig.addPassthroughCopy("./src/sw.js");
eleventyConfig.addCollection("tagList", require("./src/_11ty/getTagList"));
/* Markdown Plugins */
let markdownIt = require("markdown-it");
let markdownItAnchor = require("markdown-it-anchor");
let markdownItFootnote = require("markdown-it-footnote");
let options = {
html: true,
breaks: true,
linkify: true,
};
let markdownLib = markdownIt(options)
.use(markdownItFootnote)
.use(markdownItAnchor);
eleventyConfig.setLibrary("md", markdownLib);
eleventyConfig.addTransform("htmlmin", function (content, outputPath) {
if (outputPath && outputPath.endsWith(".html")) {
let minified = htmlmin.minify(content, {
removeComments: true,
collapseWhitespace: true,
});
return minified;
}
return content;
});
return {
templateFormats: ["md", "njk", "html", "liquid"],
// If your site lives in a different subdirectory, change this.
// Leading or trailing slashes are all normalized away, so don’t worry about it.
// If you don’t have a subdirectory, use "" or "/" (they do the same thing)
// This is only used for URLs (it does not affect your file structure)
pathPrefix: "/",
markdownTemplateEngine: "liquid",
htmlTemplateEngine: "njk",
dataTemplateEngine: "njk",
passthroughFileCopy: true,
dir: {
input: "./src",
includes: "_includes",
data: "_data",
output: "dist",
},
};
};