forked from pjsier/chicago-elections-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eleventy.js
106 lines (91 loc) · 2.97 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
require("dotenv").config()
const fs = require("fs")
const path = require("path")
const sitemap = require("@quasibit/eleventy-plugin-sitemap")
const Image = require("@11ty/eleventy-img")
const { baseurl, url } = require("./site/_data/site")
async function resizeImage(src, sizes, outputFormat = "png") {
const stats = await Image(src, {
widths: [+sizes.split("x")[0]],
formats: [outputFormat],
outputDir: "./site/img",
})
const props = stats[outputFormat].slice(-1)[0]
return props.url
}
async function imageShortcode(src, alt, sizes, cls = "") {
let metadata = await Image(src, {
widths: [500, 768],
formats: ["webp", "jpeg"],
outputDir: "./site/img",
urlPath: `${baseurl}/img/`,
})
return Image.generateHTML(metadata, {
alt,
sizes,
class: cls,
loading: "lazy",
decoding: "async",
})
}
module.exports = function (eleventyConfig) {
const markdownIt = require("markdown-it")
const markdownItLinkAttributes = require("markdown-it-link-attributes")
// Set target="_blank" and rel="noopener noreferrer" on external links
const markdownLib = markdownIt({
html: true,
}).use(markdownItLinkAttributes, {
pattern: /^https?:/,
attrs: {
target: "_blank",
rel: "noopener noreferrer",
},
})
eleventyConfig.setLibrary("md", markdownLib)
eleventyConfig.addFilter("markdown", (value) => markdownLib.render(value))
eleventyConfig.addPairedShortcode("mdBlock", (content) =>
markdownLib.render(content)
)
// This allows Eleventy to watch for file changes during local development.
eleventyConfig.setUseGitIgnore(false)
eleventyConfig.addNunjucksAsyncShortcode("resizeImage", resizeImage)
eleventyConfig.addFilter("resizeImage", resizeImage)
eleventyConfig.addNunjucksAsyncShortcode("image", imageShortcode)
// Used to avoid nunjucks escaping includes of imported CSS
// cssnano was converting media queries with ID values to "{#"
// Can also be used for nunjucks-style import within 11ty.js files
eleventyConfig.addShortcode("includefile", function (filename) {
return fs.readFileSync(
path.join(__dirname, "site", "_includes", filename),
"utf8"
)
})
// Create a collection of items without permalinks so that we can reference them
// in a separate shortcode to pull in partial content directly
eleventyConfig.addCollection("partials", (collectionApi) =>
collectionApi.getAll().filter(({ data: { permalink } }) => !permalink)
)
eleventyConfig.addPassthroughCopy({
"src/img": "img",
"site/img": "img",
output: "data",
})
eleventyConfig.addPlugin(sitemap, {
sitemap: {
hostname: url,
},
})
// add pasthrough tiles/mapstyle.json
eleventyConfig.addPassthroughCopy("tiles/mapstyle.json")
return {
dir: {
input: "site/",
output: "dist",
includes: "_includes",
layouts: "_layouts",
},
templateFormats: ["html", "md", "njk", "11ty.js"],
htmlTemplateEngine: "njk",
passthroughFileCopy: true,
}
}