Compare commits
No commits in common. "d6276067a5fee5686f391cb505fa99ee44db59f1" and "c657a2d55ef840c4513ecf1ce6b34e6735bfc820" have entirely different histories.
d6276067a5
...
c657a2d55e
|
@ -1,43 +1,82 @@
|
||||||
// Installed Plugins
|
// Installed Plugins
|
||||||
import pluginRss from "@11ty/eleventy-plugin-rss";
|
import pluginRss from "@11ty/eleventy-plugin-rss";
|
||||||
import pluginEleventyNavigation from "@11ty/eleventy-navigation";
|
import eleventyNavigationPlugin from "@11ty/eleventy-navigation";
|
||||||
import pluginEmbedEverything from "eleventy-plugin-embed-everything";
|
import metagen from 'eleventy-plugin-metagen';
|
||||||
import pluginMetagen from "eleventy-plugin-metagen";
|
import emojiReadTime from "@11tyrocks/eleventy-plugin-emoji-readtime";
|
||||||
import pluginEmojiReadTime from "@11tyrocks/eleventy-plugin-emoji-readtime";
|
|
||||||
import pluginTOC from "@uncenter/eleventy-plugin-toc";
|
|
||||||
|
|
||||||
// Custom Configurations
|
import slugify from "slugify";
|
||||||
import markdownItConfig from "./src/_config/markdown-it.js";
|
|
||||||
import copyConfig from "./src/_config/copy.js";
|
|
||||||
import collectionsConfig from "./src/_config/collections.js";
|
|
||||||
import filterConfig from "./src/_config/filter.js";
|
|
||||||
import shortCodesConfig from "./src/_config/shortcodes.js";
|
|
||||||
|
|
||||||
export default function(eleventyConfig) {
|
import markdownPlugin from "./eleventy.config.md.js";
|
||||||
// Installed Plugins
|
|
||||||
eleventyConfig.addPlugin(pluginRss);
|
export default function (eleventyConfig) {
|
||||||
eleventyConfig.addPlugin(pluginEleventyNavigation);
|
// Copy files
|
||||||
eleventyConfig.addPlugin(pluginEmbedEverything, { add: ['soundcloud'] });
|
eleventyConfig.addPassthroughCopy("./src/assets/");
|
||||||
eleventyConfig.addPlugin(pluginMetagen);
|
eleventyConfig.addWatchTarget("./src/assets/");
|
||||||
eleventyConfig.addPlugin(pluginEmojiReadTime);
|
eleventyConfig.addPassthroughCopy({
|
||||||
eleventyConfig.addPlugin(pluginTOC, {
|
"node_modules/@zachleat/details-utils/details-utils.js": "assets/js/details-utils.js",
|
||||||
tags: ['h2', 'h3', 'h4', 'h5', 'h6'],
|
|
||||||
wrapper: function (toc) {
|
|
||||||
return `<nav class="toc" aria-labelledby="toc-heading">${toc}</nav>`;
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Custom Configurations
|
// Custom Plugins
|
||||||
eleventyConfig.addPlugin(markdownItConfig);
|
eleventyConfig.addPlugin(markdownPlugin);
|
||||||
eleventyConfig.addPlugin(copyConfig);
|
|
||||||
eleventyConfig.addPlugin(collectionsConfig);
|
// Installed Plugins
|
||||||
eleventyConfig.addPlugin(filterConfig);
|
eleventyConfig.addPlugin(pluginRss);
|
||||||
eleventyConfig.addPlugin(shortCodesConfig);
|
eleventyConfig.addPlugin(eleventyNavigationPlugin);
|
||||||
|
eleventyConfig.addPlugin(metagen);
|
||||||
|
eleventyConfig.addPlugin(emojiReadTime);
|
||||||
|
|
||||||
// Eleventy bundle plugin
|
// Eleventy bundle plugin
|
||||||
eleventyConfig.addBundle("css");
|
eleventyConfig.addBundle("css");
|
||||||
eleventyConfig.addBundle("js", { toFileDirectory: "assets/js" });
|
eleventyConfig.addBundle("js", { toFileDirectory: "assets/js" });
|
||||||
|
|
||||||
|
// Add content categories to a collection
|
||||||
|
eleventyConfig.addCollection("categories", function(collectionApi) {
|
||||||
|
let categories = new Set();
|
||||||
|
let contents = collectionApi.getFilteredByTag('contents');
|
||||||
|
contents.forEach(p => {
|
||||||
|
let cats = p.data.categories;
|
||||||
|
cats.forEach(c => categories.add(c));
|
||||||
|
});
|
||||||
|
return Array.from(categories).sort();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Filter contents by category
|
||||||
|
eleventyConfig.addFilter("filterByCategory", function(contents, cat) {
|
||||||
|
cat = cat.toLowerCase();
|
||||||
|
let result = contents.filter(item => {
|
||||||
|
let cats = item.data.categories.map(c => c.toLowerCase());
|
||||||
|
return cats.includes(cat);
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Filter: Format dates
|
||||||
|
const dateOptions = {
|
||||||
|
year: 'numeric',
|
||||||
|
month: 'long',
|
||||||
|
day: 'numeric',
|
||||||
|
};
|
||||||
|
const dateTimeLocale = new Intl.DateTimeFormat("en-GB", dateOptions);
|
||||||
|
eleventyConfig.addFilter("formatDate", function(date) {
|
||||||
|
return dateTimeLocale.format(date);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Filter: Limit number of items displayed
|
||||||
|
eleventyConfig.addFilter("itemLimit", function(array, itemLimit) {
|
||||||
|
return array.slice(0, itemLimit);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Shortcode: <cite> tag
|
||||||
|
eleventyConfig.addShortcode('cite', (str) => `<cite>${str}</cite>`);
|
||||||
|
|
||||||
|
// Paired shortcode: Manual heading anchor
|
||||||
|
eleventyConfig.addPairedShortcode('headingAnchor', (title, hLevel, id=slugify(title)) => {
|
||||||
|
return `<div class="heading-wrapper h${hLevel}">
|
||||||
|
<h${hLevel} id="${id}">${title}</h${hLevel}>
|
||||||
|
<a class="heading-anchor" href="#${id}" aria-labelledby="${id}"><span hidden="">#</span></a>
|
||||||
|
</div>`;
|
||||||
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
dir: {
|
dir: {
|
||||||
input: "src"
|
input: "src"
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
/* CONFIGURATION FOR MARKDOWN TEMPLATES */
|
||||||
|
|
||||||
|
// Installed Plugins
|
||||||
|
import pluginTOC from '@uncenter/eleventy-plugin-toc';
|
||||||
|
import embedEverything from "eleventy-plugin-embed-everything";
|
||||||
|
|
||||||
|
// Configure slug filter
|
||||||
|
import slugify from "slugify";
|
||||||
|
|
||||||
// markdown-it plugins
|
// markdown-it plugins
|
||||||
import markdownIt from "markdown-it";
|
import markdownIt from "markdown-it";
|
||||||
import markdownItAnchor from "markdown-it-anchor";
|
import markdownItAnchor from "markdown-it-anchor";
|
||||||
|
@ -7,13 +16,16 @@ import markdownItBracketedSpans from 'markdown-it-bracketed-spans';
|
||||||
import markdownItDefList from "markdown-it-deflist";
|
import markdownItDefList from "markdown-it-deflist";
|
||||||
import markdownItFootnote from "markdown-it-footnote";
|
import markdownItFootnote from "markdown-it-footnote";
|
||||||
|
|
||||||
// Configure slug filter
|
export default function (eleventyConfig) {
|
||||||
import slugify from "slugify";
|
// Installed Plugins
|
||||||
|
eleventyConfig.addPlugin(pluginTOC, {
|
||||||
|
tags: ['h2', 'h3', 'h4', 'h5', 'h6'],
|
||||||
|
wrapper: function (toc) {
|
||||||
|
return `<nav class="toc" aria-labelledby="toc-heading">${toc}</nav>`;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
eleventyConfig.addPlugin(embedEverything, { add: ['soundcloud'] });
|
||||||
|
|
||||||
// Enable exporting markdown-it library to another module
|
|
||||||
export let markdownLibrary;
|
|
||||||
|
|
||||||
export default function(eleventyConfig) {
|
|
||||||
// Configure slug filter
|
// Configure slug filter
|
||||||
eleventyConfig.addFilter("slug", (str) => {
|
eleventyConfig.addFilter("slug", (str) => {
|
||||||
if (!str) {
|
if (!str) {
|
||||||
|
@ -62,7 +74,7 @@ export default function(eleventyConfig) {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Markdown Overrides */
|
/* Markdown Overrides */
|
||||||
markdownLibrary = markdownIt({
|
let markdownLibrary = markdownIt({
|
||||||
html: true,
|
html: true,
|
||||||
linkify: true,
|
linkify: true,
|
||||||
})
|
})
|
||||||
|
@ -106,6 +118,42 @@ export default function(eleventyConfig) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Paired shortcode: custom container
|
||||||
|
eleventyConfig.addPairedShortcode('container', (children, el, className) => {
|
||||||
|
const classMarkup = className ? ` class="${className}"` : "";
|
||||||
|
const content = markdownLibrary.render(children);
|
||||||
|
return `<${el}${classMarkup}>${content}</${el}>`;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Paired shortcode: image figure and figcaption
|
||||||
|
eleventyConfig.addPairedShortcode('imgFigure', (caption, img, alt=caption, enableLazyLoading=true) => {
|
||||||
|
const figcaption = markdownLibrary.renderInline(caption);
|
||||||
|
return `<figure>
|
||||||
|
<img src="${img}" alt="${alt}"${enableLazyLoading ? ' loading="lazy"' : ''}>
|
||||||
|
<figcaption>${figcaption}</figcaption>
|
||||||
|
</figure>`;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Paired shorcode: Content accordion
|
||||||
|
eleventyConfig.addPairedShortcode('accordion', (content, summary) => {
|
||||||
|
const summaryMarkup = markdownLibrary.renderInline(summary);
|
||||||
|
const contentMarkup = markdownLibrary.render(content);
|
||||||
|
return `<details class="content-accordion">
|
||||||
|
<summary class="content-accordion__summary">${summaryMarkup}</summary>
|
||||||
|
<div class="content-accordion__content">${contentMarkup}</div>
|
||||||
|
</details>`;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Paired shorcode: Content warning accordion
|
||||||
|
eleventyConfig.addPairedShortcode('contentWarning', (content, warning) => {
|
||||||
|
const warningMarkup = markdownLibrary.renderInline(warning);
|
||||||
|
const contentMarkup = markdownLibrary.render(content);
|
||||||
|
return `<details class="contnet-warning">
|
||||||
|
<summary class="contnet-warning__warning"><strong><span aria-hidden="true">⚠️</span> Content Warning:</strong> ${warningMarkup}</summary>
|
||||||
|
<div class="contnet-warning__content">${contentMarkup}</div>
|
||||||
|
</details>`;
|
||||||
|
});
|
||||||
|
|
||||||
/* This is the part that tells 11ty to swap to our custom config */
|
/* This is the part that tells 11ty to swap to our custom config */
|
||||||
eleventyConfig.setLibrary("md", markdownLibrary);
|
eleventyConfig.setLibrary("md", markdownLibrary);
|
||||||
}
|
}
|
|
@ -1,12 +0,0 @@
|
||||||
export default function(eleventyConfig) {
|
|
||||||
// Add content categories to a collection
|
|
||||||
eleventyConfig.addCollection("categories", function(collectionApi) {
|
|
||||||
let categories = new Set();
|
|
||||||
let contents = collectionApi.getFilteredByTag('contents');
|
|
||||||
contents.forEach(p => {
|
|
||||||
let cats = p.data.categories;
|
|
||||||
cats.forEach(c => categories.add(c));
|
|
||||||
});
|
|
||||||
return Array.from(categories).sort();
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
// Passthrough File Copy
|
|
||||||
export default function(eleventyConfig) {
|
|
||||||
eleventyConfig.addPassthroughCopy("./src/assets/");
|
|
||||||
eleventyConfig.addWatchTarget("./src/assets/");
|
|
||||||
eleventyConfig.addWatchTarget("./src/_bundle/");
|
|
||||||
eleventyConfig.addPassthroughCopy({
|
|
||||||
"node_modules/@zachleat/details-utils/details-utils.js": "assets/js/details-utils.js",
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
export default function(eleventyConfig) {
|
|
||||||
// Filter contents by category
|
|
||||||
eleventyConfig.addFilter("filterByCategory", function(contents, cat) {
|
|
||||||
cat = cat.toLowerCase();
|
|
||||||
let result = contents.filter(item => {
|
|
||||||
let cats = item.data.categories.map(c => c.toLowerCase());
|
|
||||||
return cats.includes(cat);
|
|
||||||
});
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Format dates
|
|
||||||
const dateOptions = {
|
|
||||||
year: 'numeric',
|
|
||||||
month: 'long',
|
|
||||||
day: 'numeric',
|
|
||||||
};
|
|
||||||
const dateTimeLocale = new Intl.DateTimeFormat("en-GB", dateOptions);
|
|
||||||
eleventyConfig.addFilter("formatDate", function(date) {
|
|
||||||
return dateTimeLocale.format(date);
|
|
||||||
});
|
|
||||||
|
|
||||||
// Limit number of items displayed
|
|
||||||
eleventyConfig.addFilter("itemLimit", function(array, itemLimit) {
|
|
||||||
return array.slice(0, itemLimit);
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -1,51 +0,0 @@
|
||||||
import slugify from "slugify";
|
|
||||||
import { markdownLibrary } from "./markdown-it.js";
|
|
||||||
|
|
||||||
export default function(eleventyConfig) {
|
|
||||||
// <cite> tag
|
|
||||||
eleventyConfig.addShortcode('cite', (str) => `<cite>${str}</cite>`);
|
|
||||||
|
|
||||||
// Manual heading anchor
|
|
||||||
eleventyConfig.addPairedShortcode('headingAnchor', (title, hLevel, id=slugify(title)) => {
|
|
||||||
return `<div class="heading-wrapper h${hLevel}">
|
|
||||||
<h${hLevel} id="${id}">${title}</h${hLevel}>
|
|
||||||
<a class="heading-anchor" href="#${id}" aria-labelledby="${id}"><span hidden="">#</span></a>
|
|
||||||
</div>`;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Custom container
|
|
||||||
eleventyConfig.addPairedShortcode('container', (children, el, className) => {
|
|
||||||
const classMarkup = className ? ` class="${className}"` : "";
|
|
||||||
const content = markdownLibrary.render(children);
|
|
||||||
return `<${el}${classMarkup}>${content}</${el}>`;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Image figure and figcaption
|
|
||||||
eleventyConfig.addPairedShortcode('imgFigure', (caption, img, alt=caption, enableLazyLoading=true) => {
|
|
||||||
const figcaption = markdownLibrary.renderInline(caption);
|
|
||||||
return `<figure>
|
|
||||||
<img src="${img}" alt="${alt}"${enableLazyLoading ? ' loading="lazy"' : ''}>
|
|
||||||
<figcaption>${figcaption}</figcaption>
|
|
||||||
</figure>`;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Content accordion
|
|
||||||
eleventyConfig.addPairedShortcode('accordion', (content, summary) => {
|
|
||||||
const summaryMarkup = markdownLibrary.renderInline(summary);
|
|
||||||
const contentMarkup = markdownLibrary.render(content);
|
|
||||||
return `<details class="content-accordion">
|
|
||||||
<summary class="content-accordion__summary">${summaryMarkup}</summary>
|
|
||||||
<div class="content-accordion__content">${contentMarkup}</div>
|
|
||||||
</details>`;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Paired shorcode: Content warning accordion
|
|
||||||
eleventyConfig.addPairedShortcode('contentWarning', (content, warning) => {
|
|
||||||
const warningMarkup = markdownLibrary.renderInline(warning);
|
|
||||||
const contentMarkup = markdownLibrary.render(content);
|
|
||||||
return `<details class="contnet-warning">
|
|
||||||
<summary class="contnet-warning__warning"><strong><span aria-hidden="true">⚠️</span> Content Warning:</strong> ${warningMarkup}</summary>
|
|
||||||
<div class="contnet-warning__content">${contentMarkup}</div>
|
|
||||||
</details>`;
|
|
||||||
});
|
|
||||||
}
|
|
Loading…
Reference in New Issue