2022-05-13 17:10:00 -04:00
|
|
|
const { DateTime } = require("luxon");
|
|
|
|
const markdownItAnchor = require("markdown-it-anchor");
|
2023-01-23 09:17:38 -05:00
|
|
|
|
2018-01-28 22:27:41 -05:00
|
|
|
const pluginRss = require("@11ty/eleventy-plugin-rss");
|
|
|
|
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
|
2019-11-11 16:39:48 -05:00
|
|
|
const pluginNavigation = require("@11ty/eleventy-navigation");
|
2023-01-23 11:02:06 -05:00
|
|
|
const { EleventyHtmlBasePlugin } = require("@11ty/eleventy");
|
2018-01-16 22:08:47 -05:00
|
|
|
|
2018-01-22 09:17:48 -05:00
|
|
|
module.exports = function(eleventyConfig) {
|
2022-07-15 13:11:54 -04:00
|
|
|
eleventyConfig.ignores.add("README.md");
|
|
|
|
|
2022-07-15 15:53:32 -04:00
|
|
|
// Copy the contents of the `public` folder to the output folder
|
|
|
|
// For example, `./public/css/` ends up in `_site/css/`
|
2022-08-15 13:22:19 -04:00
|
|
|
eleventyConfig.addPassthroughCopy({
|
|
|
|
"./public/": "/",
|
2023-01-23 11:02:06 -05:00
|
|
|
"./node_modules/prismjs/themes/prism-okaidia.css": "/css/prism-okaidia.css"
|
2022-08-15 13:22:19 -04:00
|
|
|
});
|
2022-01-08 15:35:24 -05:00
|
|
|
|
2023-01-23 11:02:06 -05:00
|
|
|
// If your passthrough copy gets heavy and cumbersome, add this line
|
|
|
|
// to emulate the file copy on the dev server. Learn more: https://www.11ty.dev/docs/copy/#emulate-passthrough-copy-during-serve
|
|
|
|
// eleventyConfig.setServerPassthroughCopyBehavior("passthrough");
|
|
|
|
|
2021-03-17 11:29:29 -04:00
|
|
|
// Add plugins
|
2018-01-28 22:27:41 -05:00
|
|
|
eleventyConfig.addPlugin(pluginRss);
|
|
|
|
eleventyConfig.addPlugin(pluginSyntaxHighlight);
|
2019-11-11 16:39:48 -05:00
|
|
|
eleventyConfig.addPlugin(pluginNavigation);
|
2022-08-19 12:05:22 -04:00
|
|
|
eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
|
2019-11-11 17:22:08 -05:00
|
|
|
|
2022-08-15 16:00:08 -04:00
|
|
|
eleventyConfig.addFilter("readableDate", (dateObj, format = "dd LLLL yyyy") => {
|
|
|
|
return DateTime.fromJSDate(dateObj, {zone: 'utc'}).toFormat(format);
|
2018-01-22 09:17:48 -05:00
|
|
|
});
|
|
|
|
|
2019-01-10 23:20:14 -05:00
|
|
|
// https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-string
|
|
|
|
eleventyConfig.addFilter('htmlDateString', (dateObj) => {
|
2019-01-18 11:25:36 -05:00
|
|
|
return DateTime.fromJSDate(dateObj, {zone: 'utc'}).toFormat('yyyy-LL-dd');
|
2019-01-10 23:20:14 -05:00
|
|
|
});
|
|
|
|
|
2018-09-19 10:52:49 -04:00
|
|
|
// Get the first `n` elements of a collection.
|
|
|
|
eleventyConfig.addFilter("head", (array, n) => {
|
2021-07-28 09:57:25 -04:00
|
|
|
if(!Array.isArray(array) || array.length === 0) {
|
|
|
|
return [];
|
|
|
|
}
|
2018-09-30 01:09:09 -04:00
|
|
|
if( n < 0 ) {
|
|
|
|
return array.slice(n);
|
|
|
|
}
|
|
|
|
|
2018-09-19 10:52:49 -04:00
|
|
|
return array.slice(0, n);
|
|
|
|
});
|
|
|
|
|
2021-03-17 11:29:29 -04:00
|
|
|
// Return the smallest number argument
|
2020-10-16 14:06:30 -04:00
|
|
|
eleventyConfig.addFilter("min", (...numbers) => {
|
|
|
|
return Math.min.apply(null, numbers);
|
|
|
|
});
|
|
|
|
|
2022-06-27 16:50:25 -04:00
|
|
|
// Return all the tags used in a collection
|
|
|
|
eleventyConfig.addFilter("getAllTags", collection => {
|
2020-07-27 16:18:51 -04:00
|
|
|
let tagSet = new Set();
|
2022-06-27 16:50:25 -04:00
|
|
|
for(let item of collection) {
|
2021-03-17 17:29:07 -04:00
|
|
|
(item.data.tags || []).forEach(tag => tagSet.add(tag));
|
2022-06-27 16:50:25 -04:00
|
|
|
}
|
|
|
|
return Array.from(tagSet);
|
|
|
|
});
|
2020-07-27 16:18:51 -04:00
|
|
|
|
2022-06-27 16:50:25 -04:00
|
|
|
eleventyConfig.addFilter("filterTagList", function filterTagList(tags) {
|
|
|
|
return (tags || []).filter(tag => ["all", "nav", "post", "posts"].indexOf(tag) === -1);
|
2020-07-27 16:18:51 -04:00
|
|
|
});
|
2018-08-29 09:46:06 -04:00
|
|
|
|
2023-01-23 11:02:06 -05:00
|
|
|
// Customize Markdown library settings:
|
2022-06-27 16:50:25 -04:00
|
|
|
eleventyConfig.amendLibrary("md", mdLib => {
|
|
|
|
mdLib.use(markdownItAnchor, {
|
|
|
|
permalink: markdownItAnchor.permalink.ariaHidden({
|
|
|
|
placement: "after",
|
|
|
|
class: "direct-link",
|
|
|
|
symbol: "#",
|
|
|
|
}),
|
2022-07-13 13:46:03 -04:00
|
|
|
level: [1,2,3,4],
|
2023-01-23 11:02:06 -05:00
|
|
|
slugify: eleventyConfig.getFilter("slugify")
|
2022-06-27 16:50:25 -04:00
|
|
|
});
|
2019-11-11 17:22:08 -05:00
|
|
|
});
|
2019-01-31 08:14:06 -05:00
|
|
|
|
2018-01-22 09:17:48 -05:00
|
|
|
return {
|
2021-03-17 11:29:29 -04:00
|
|
|
// Control which files Eleventy will process
|
|
|
|
// e.g.: *.md, *.njk, *.html, *.liquid
|
2018-01-22 09:17:48 -05:00
|
|
|
templateFormats: [
|
2018-01-16 22:08:47 -05:00
|
|
|
"md",
|
|
|
|
"njk",
|
2018-09-30 00:22:27 -04:00
|
|
|
"html",
|
|
|
|
"liquid"
|
2018-01-16 22:08:47 -05:00
|
|
|
],
|
2018-01-22 09:17:48 -05:00
|
|
|
|
2022-01-08 15:35:24 -05:00
|
|
|
// Pre-process *.md files with: (default: `liquid`)
|
|
|
|
markdownTemplateEngine: "njk",
|
|
|
|
|
|
|
|
// Pre-process *.html files with: (default: `liquid`)
|
|
|
|
htmlTemplateEngine: "njk",
|
|
|
|
|
2021-03-17 11:29:29 -04:00
|
|
|
// These are all optional (defaults are shown):
|
2018-01-16 22:08:47 -05:00
|
|
|
dir: {
|
|
|
|
input: ".",
|
|
|
|
includes: "_includes",
|
|
|
|
data: "_data",
|
|
|
|
output: "_site"
|
2018-01-22 09:17:48 -05:00
|
|
|
}
|
2023-01-23 11:02:06 -05:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------
|
|
|
|
// Optional:
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Optional (default is shown)
|
|
|
|
// pathPrefix: "/",
|
|
|
|
// -----------------------------------------------------------------
|
2018-01-22 09:17:48 -05:00
|
|
|
};
|
|
|
|
};
|