97 lines
2.9 KiB
JavaScript
97 lines
2.9 KiB
JavaScript
// Installed Plug-ins
|
|
const { EleventyRenderPlugin } = require("@11ty/eleventy");
|
|
const pluginWebc = require("@11ty/eleventy-plugin-webc");
|
|
const pluginRss = require("@11ty/eleventy-plugin-rss");
|
|
const metagen = require('eleventy-plugin-metagen');
|
|
const pluginTOC = require('eleventy-plugin-nesting-toc');
|
|
|
|
// Configure slug filter
|
|
const slugify = require("slugify");
|
|
|
|
// Configure markdown-it plug-ins
|
|
const markdownIt = require("markdown-it");
|
|
const markdownItAnchor = require("markdown-it-anchor");
|
|
|
|
module.exports = function (eleventyConfig) {
|
|
// Copy files
|
|
eleventyConfig.addPassthroughCopy("./src/assets/");
|
|
eleventyConfig.addWatchTarget("./src/assets/");
|
|
eleventyConfig.addPassthroughCopy({ "./src/assets/feed/": "/" });
|
|
|
|
// Installed Plug-ins
|
|
eleventyConfig.addPlugin(EleventyRenderPlugin);
|
|
eleventyConfig.addPlugin(pluginWebc, {
|
|
components: "./src/_includes/**/*.webc",
|
|
});
|
|
eleventyConfig.addPlugin(pluginRss);
|
|
eleventyConfig.addPlugin(metagen);
|
|
eleventyConfig.addPlugin(pluginTOC, { tags: ['h2', 'h3', 'h4', 'h5'] });
|
|
|
|
// Configure slug filter
|
|
eleventyConfig.addFilter("slug", (str) => {
|
|
if (!str) {
|
|
return;
|
|
}
|
|
|
|
return slugify(str, {
|
|
lower: true,
|
|
remove: /["]/g,
|
|
});
|
|
});
|
|
|
|
// Configure markdown-it plug-ins
|
|
eleventyConfig.setLibrary(
|
|
'md',
|
|
markdownIt().use(markdownItAnchor)
|
|
)
|
|
const linkAfterHeader = markdownItAnchor.permalink.linkAfterHeader({
|
|
class: "heading-anchor",
|
|
symbol: "<span hidden>#</span>",
|
|
style: "aria-labelledby",
|
|
});
|
|
const markdownItAnchorOptions = {
|
|
level: [1, 2, 3, 4, 5],
|
|
slugify: (str) =>
|
|
slugify(str, {
|
|
lower: true,
|
|
strict: true,
|
|
remove: /["]/g,
|
|
}),
|
|
tabIndex: false,
|
|
permalink(slug, opts, state, idx) {
|
|
state.tokens.splice(
|
|
idx,
|
|
0,
|
|
Object.assign(new state.Token("div_open", "div", 1), {
|
|
// Add class "header-wrapper [h1 or h2 or h3]"
|
|
attrs: [["class", `heading-wrapper ${state.tokens[idx].tag}`]],
|
|
block: true,
|
|
})
|
|
);
|
|
|
|
state.tokens.splice(
|
|
idx + 4,
|
|
0,
|
|
Object.assign(new state.Token("div_close", "div", -1), {
|
|
block: true,
|
|
})
|
|
);
|
|
|
|
linkAfterHeader(slug, opts, state, idx + 1);
|
|
},
|
|
};
|
|
|
|
/* Markdown Overrides */
|
|
let markdownLibrary = markdownIt({
|
|
html: true,
|
|
}).use(markdownItAnchor, markdownItAnchorOptions);
|
|
|
|
/* This is the part that tells 11ty to swap to our custom config */
|
|
eleventyConfig.setLibrary("md", markdownLibrary);
|
|
|
|
return {
|
|
dir: {
|
|
input: "src"
|
|
}
|
|
};
|
|
}; |