forked from ttntm/11ty-landing-page
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eleventy.js
67 lines (59 loc) · 1.58 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
const htmlmin = require("html-minifier");
const markdownIt = require('markdown-it');
const pluginRss = require("@11ty/eleventy-plugin-rss");
module.exports = function (eleventyConfig) {
// PLUGINS
eleventyConfig.addPlugin(pluginRss);
// shortcode to render markdown from string => {{ STRING | markdown | safe }}
eleventyConfig.addFilter('markdown', function(value) {
let markdown = require('markdown-it')({
html: true
});
return markdown.render(value);
});
// rebuild on CSS changes
eleventyConfig.addWatchTarget('./src/_includes/css/');
// Markdown
eleventyConfig.setLibrary(
'md',
markdownIt({
html: true,
breaks: true,
linkify: true,
typographer: true
})
)
//create collections
eleventyConfig.addCollection('sections', async (collection) => {
return collection.getFilteredByGlob('./src/sections/*.md');
});
// STATIC FILES
eleventyConfig.addPassthroughCopy({ './src/static/': '/' });
// TRANSFORM -- Minify HTML Output
eleventyConfig.addTransform("htmlmin", function(content, outputPath) {
if( outputPath && outputPath.endsWith(".html") ) {
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true
});
return minified;
}
return content;
});
return {
dir: {
input: 'src',
output: 'public',
data: './_data',
includes: './_includes',
layouts: './_layouts'
},
templateFormats: [
'md',
'njk',
'11ty.js'
],
htmlTemplateEngine: 'njk'
};
};