-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eleventy.js
More file actions
218 lines (202 loc) · 6.43 KB
/
Copy path.eleventy.js
File metadata and controls
218 lines (202 loc) · 6.43 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
import { InputPathToUrlTransformPlugin, EleventyRenderPlugin, IdAttributePlugin } from '@11ty/eleventy';
import syntaxHighlight from '@11ty/eleventy-plugin-syntaxhighlight';
import htmlMinifier from 'html-minifier-next';
import process from 'node:process';
import { execSync } from 'node:child_process';
import markdownIt from 'markdown-it';
import markdownItAnchor from 'markdown-it-anchor';
import markdownItFootnote from 'markdown-it-footnote';
import markdownItMark from 'markdown-it-mark';
import yaml from 'js-yaml';
import { parse as csvParse } from 'csv-parse/sync';
import pluginEmbed from 'eleventy-plugin-embed-everything';
import pluginToc from '@uncenter/eleventy-plugin-toc';
import { eleventyImageTransformPlugin } from '@11ty/eleventy-img';
import pluginRobotsTxt from 'eleventy-plugin-robotstxt';
import validateHtml from '@saiballo/eleventy-plugin-validate-html'
import pluginMarkdownEmbed from './pluginMarkdownEmbed.js';
export default function (eleventyConfig) {
eleventyConfig.addPassthroughCopy({ 'assets': '/' });
eleventyConfig.addPassthroughCopy({ 'js': '/' });
eleventyConfig.addWatchTarget('js/')
eleventyConfig.addWatchTarget('styles/')
eleventyConfig.addGlobalData('permalink', () => {
return (data) => eleventyConfig.getFilter('slugify')(data.page.fileSlug).concat('/');
});
// Parse Curriculum vitae output PDF //
eleventyConfig.addPassthroughCopy({ 'cv/cv.pdf': '/Tommaso Marmo – Curriculum vitae.pdf' });
eleventyConfig.addPassthroughCopy({ 'cv/cv.it.pdf': '/it/Tommaso Marmo – Curriculum vitae.pdf' });
// Markdown //
const md = markdownIt({
html: true,
linkify: true,
typographer: true
}).use(markdownItFootnote)
.use(markdownItMark)
.use(markdownItAnchor, {
permalink: markdownItAnchor.permalink.headerLink(),
slugify: (s) => encodeURIComponent(String(s))
});
eleventyConfig.setLibrary('md', md);
// Data files //
eleventyConfig.addDataExtension('yaml,yml', contents => yaml.load(contents));
eleventyConfig.addDataExtension('csv', contents => csvParse(contents, {
columns: true,
skip_empty_lines: true
}));
// Collections //
eleventyConfig.addCollection('filinge', function (collection) {
return collection.getFilteredByGlob('content/filinge/*').sort((a, b) => {
return b.date - a.date;
});
});
eleventyConfig.addCollection('italian', function (collectionApi) {
return collectionApi.getFilteredByGlob('content/**/*').filter((item) => item.data.lang == 'it').sort((a, b) => {
return b.date - a.date;
});
});
eleventyConfig.addCollection('jam', function (collection) {
return collection.getFilteredByGlob('content/jam/public/*').sort((a, b) => {
return b.date - a.date;
});
});
eleventyConfig.addCollection('lastUpdated', function (collectionApi) {
return collectionApi.getAll().sort((a, b) => {
const aUpdated = a.data.updated || a.date || 0;
const bUpdated = b.data.updated || b.date || 0;
// #BUG: Sorting is not accurate, and sort order changes every build?
// https://github.com/xplosionmind/tommi.space/issues/130
return bUpdated - aUpdated;
});
});
eleventyConfig.addCollection('now', function (collection) {
return collection.getFilteredByGlob('now/**/*').sort((a, b) => {
return b.date - a.date;
});
});
eleventyConfig.addCollection('poetry', function (collection) {
return collection.getFilteredByGlob('content/poetry/*').sort((a, b) => {
return b.date - a.date;
});
});
eleventyConfig.addCollection('sconnesso', function (collection) {
return collection.getFilteredByGlob('content/sconnesso/*').sort((a, b) => {
return b.date - a.date;
});
});
eleventyConfig.addCollection('zibaldone', function (collection) {
return collection.getFilteredByGlob('content/zibaldone/**/*').sort((a, b) => {
return b.date - a.date;
});
});
// Plugins //
eleventyConfig.addPlugin(pluginEmbed, {
add: ['mastodon'],
youtube: {
options: {
lite: {
css: {
enabled: false
}
}
}
},
mastodon: {
options: {
server: 'pan.rent'
}
},
});
eleventyConfig.addPlugin(EleventyRenderPlugin);
eleventyConfig.addPlugin(IdAttributePlugin, {
slugify: (str) => encodeURIComponent(str),
checkDuplicates: false
});
eleventyConfig.addPlugin(InputPathToUrlTransformPlugin, {
extensions: 'md,html,liquid'
});
eleventyConfig.addPlugin(eleventyImageTransformPlugin, {
extensions: 'html',
formats: ['webp', 'auto'],
widths: [320, 720, 1080, 'auto'],
defaultAttributes: {
loading: 'lazy',
decoding: 'async',
sizes: 'auto'
},
outputDir: './www/img/'
});
eleventyConfig.addPlugin(syntaxHighlight);
eleventyConfig.addPlugin(pluginToc, {
ul: true
});
eleventyConfig.addPlugin(pluginMarkdownEmbed, { md });
// Filters //
eleventyConfig.addFilter('reverse', (collection) => {
const arr = [...collection];
return arr.reverse();
});
eleventyConfig.addFilter('markdownify', (str) => {
return md.renderInline(str);
});
eleventyConfig.addFilter('obfuscateEmail', (email) => {
return email.split('').map(function (char) {
return `&#${char.charCodeAt(0)};`;
}).join('');
});
// Production-only //
if (process.env.ELEVENTY_ENV != 'development') {
// Validate HTML //
eleventyConfig.addPlugin(validateHtml, {
'ignore': [
'Unknown element <lite-youtube>',
'Unknown element <pagefind-searchbox>',
'Duplicate ID',
'Raw ">" must be encoded as ">"'
]
});
// Minify output //
eleventyConfig.addTransform(htmlMinifier, async function (content) {
if ((this.page.outputPath || '').endsWith('.html')) {
const minified = await htmlMinifier.minify(content, {
collapseBooleanAttributes: true,
collapseWhitespace: true,
decodeEntities: true,
minifyCSS: true,
minifyJS: true,
noNewlinesBeforeTagClose: true,
quoteCharacter: "'",
//removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
//removeEmptyElements: true,
//removeOptionalTags: true,
removeRedundantAttributes: true,
sortAttributes: true,
useShortDoctype: true,
});
return minified;
}
return content;
});
// Fetch and parse robots.txt //
eleventyConfig.addPlugin(pluginRobotsTxt, {
shouldBlockAIRobots: true
});
}
if (process.env.CSS_NAKED) {
eleventyConfig.addGlobalData('cssNaked', true);
};
eleventyConfig.on('eleventy.after', () => {
// Search indexing
execSync(`dx pagefind`, { encoding: 'utf-8' });
});
return {
dir: {
includes: 'includes',
layouts: 'layouts',
data: 'data',
output: 'www'
}
};
};