-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eleventy.js
121 lines (103 loc) · 3.4 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
const htmlmin = require("html-minifier")
const { DateTime } = require("luxon")
const fs = require("fs")
const markdownIt = require("markdown-it")
const markdownItAnchor = require("markdown-it-anchor")
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight")
const i18n = require("eleventy-plugin-i18n")
const translations = require("./src/_data/i18n")
const markdownItFootnote = require("markdown-it-footnote")
module.exports = function (eleventyConfig) {
// Plugins
eleventyConfig.addPlugin(pluginSyntaxHighlight)
eleventyConfig.addPlugin(i18n, {
translations,
fallbackLocales: {
"*": "en",
},
})
// Filters
eleventyConfig.addShortcode("version", function () {
return String(Date.now())
})
eleventyConfig.addFilter("readableDate", (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: "utc" }).toFormat("dd LLL yyyy")
})
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)
})
// Build
eleventyConfig.addPassthroughCopy("robots.txt")
eleventyConfig.addPassthroughCopy("netlify.toml")
eleventyConfig.addPassthroughCopy("src/assets/img")
eleventyConfig.addPassthroughCopy("src/assets/fonts")
eleventyConfig.addPassthroughCopy("src/assets/javascript")
eleventyConfig.addPassthroughCopy({
"./src/admin/config.yml": "./admin/config.yml",
"node_modules/chartist/dist/chartist.min.css": "assets/chartist.min.css",
"node_modules/chartist/dist/chartist.min.js": "assets/chartist.min.js",
})
eleventyConfig.addTransform("htmlmin", function (content, outputPath) {
if (
process.env.ELEVENTY_PRODUCTION &&
outputPath &&
outputPath.endsWith(".html")
) {
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
})
return minified
}
return content
})
// This allows Eleventy to watch for file changes during local development.
eleventyConfig.setUseGitIgnore(false)
// Plugin config
/* Markdown Overrides */
let markdownLibrary = markdownIt({
html: true,
breaks: true,
linkify: true,
})
.use(markdownItAnchor, {
permalink: true,
permalinkClass: "direct-link",
permalinkSymbol: "#",
})
.use(markdownItFootnote)
eleventyConfig.setLibrary("md", markdownLibrary)
//Collections
eleventyConfig.addCollection("englishPosts", function (collection) {
return collection.getFilteredByGlob("./src/en/posts/*.md")
})
eleventyConfig.addCollection("spanishPosts", function (collection) {
return collection.getFilteredByGlob("./src/es/posts/*.md")
})
eleventyConfig.addCollection("englishProjects", function (collection) {
return collection.getFilteredByGlob("./src/en/projects/*.md")
})
eleventyConfig.addCollection("spanishProjects", function (collection) {
return collection.getFilteredByGlob("./src/es/projects/*.md")
})
return {
dir: {
input: "src",
output: "_site",
data: "_data",
includes: "_includes",
},
templateFormats: ["md", "njk", "html"],
dataTemplateEngine: "njk",
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk",
}
}