xmitter-11ty/.eleventy.js

83 lines
2.4 KiB
JavaScript
Raw Normal View History

2018-01-16 22:08:47 -05:00
const { DateTime } = require("luxon");
2018-01-27 22:08:43 -05:00
const metadata = require("./_data/metadata.json");
const absoluteUrl = require("./_src/absoluteUrl");
const HtmlToAbsoluteUrls = require("./_src/HtmlToAbsoluteUrls");
const highlighters = require("./_src/eleventy-liquidjs-tag-highlight");
2018-01-16 22:08:47 -05:00
function dateToISO(dateObj) {
return DateTime.fromJSDate(dateObj).toISO({ includeOffset: true, suppressMilliseconds: true });
2018-01-16 22:08:47 -05:00
}
module.exports = function(eleventyConfig) {
eleventyConfig.addLayoutAlias("post", "layouts/post.njk");
eleventyConfig.addFilter("rssLastUpdatedDate", collection => {
if( !collection.length ) {
throw new Error( "Collection is empty in lastUpdatedDate filter." );
}
// Newest date in the collection
return dateToISO(collection[ collection.length - 1 ].date);
});
eleventyConfig.addFilter("rssDate", dateObj => {
return dateToISO(dateObj);
});
eleventyConfig.addFilter("readableDate", dateObj => {
return DateTime.fromJSDate(dateObj).toFormat("dd LLL yyyy");
});
2018-01-27 22:08:43 -05:00
eleventyConfig.addNunjucksFilter("absoluteUrl", function(href, base) {
return absoluteUrl(href, base);
});
eleventyConfig.addNunjucksFilter("htmlToAbsoluteUrls", function(htmlContent, base, callback) {
if(!htmlContent) {
callback(null, "");
return;
}
2018-01-28 00:21:32 -05:00
HtmlToAbsoluteUrls(htmlContent, base).then(result => {
2018-01-27 22:08:43 -05:00
callback(null, result.html);
});
}, true);
// compatibility with existing {% highlight js %} and others
2018-01-28 00:44:29 -05:00
eleventyConfig.addLiquidTag("highlight", highlighters.prismjs);
// only content in the `posts/` directory
eleventyConfig.addCollection("posts", function(collection) {
return collection.getAllSorted().filter(function(item) {
return item.inputPath.match(/^\.\/posts\//) !== null;
});
});
return {
templateFormats: [
2018-01-16 22:08:47 -05:00
"md",
"njk",
"html",
"png",
"jpg",
2018-01-16 22:08:47 -05:00
"css"
],
// If your site lives in a different subdirectory, change this.
// Leading or trailing slashes are all normalized away, so dont worry about it.
// If you dont have a subdirectory, use "" or "/" (they do the same thing)
// This is only used for URLs (it does not affect your file structure)
pathPrefix: "/",
markdownTemplateEngine: "liquid",
2018-01-16 22:08:47 -05:00
htmlTemplateEngine: "njk",
dataTemplateEngine: "njk",
passthroughFileCopy: true,
dir: {
input: ".",
includes: "_includes",
data: "_data",
output: "_site"
}
};
};