forked from GoogleChrome/web.dev
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eleventy.js
145 lines (134 loc) · 5.74 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
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
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const pluginRss = require('@11ty/eleventy-plugin-rss');
const pluginSyntaxHighlight = require('@11ty/eleventy-plugin-syntaxhighlight');
const markdownIt = require('markdown-it');
const markdownItAnchor = require('markdown-it-anchor');
const slugify = require('slugify');
const componentsDir = 'src/site/_includes/components';
const {
Actions,
ShareAction,
SubscribeAction,
} = require(`./${componentsDir}/Actions`);
const ArticleNavigation = require(`./${componentsDir}/ArticleNavigation`);
const Aside = require(`./${componentsDir}/Aside`);
const Author = require(`./${componentsDir}/Author`);
const AuthorInfo = require(`./${componentsDir}/AuthorInfo`);
const Breadcrumbs = require(`./${componentsDir}/Breadcrumbs`);
const CodelabsCallout = require(`./${componentsDir}/CodelabsCallout`);
const Compare = require(`./${componentsDir}/Compare`);
const Hero = require(`./${componentsDir}/Hero`);
const PathCard = require(`./${componentsDir}/PathCard`);
const PostCard = require(`./${componentsDir}/PostCard`);
const collectionsDir = 'src/site/_collections';
const postDescending = require(`./${collectionsDir}/post-descending`);
const postsWithLighthouse = require(`./${collectionsDir}/posts-with-lighthouse`);
const recentPosts = require(`./${collectionsDir}/recent-posts`);
const filtersDir = 'src/site/_filters';
const {memoize, findBySlug} = require(`./${filtersDir}/find-by-slug`);
const pathSlug = require(`./${filtersDir}/path-slug`);
const containsTag = require(`./${filtersDir}/contains-tag`);
const githubLink = require(`./${filtersDir}/github-link`);
const postsLighthouseJson = require(`./${filtersDir}/posts-lighthouse-json`);
const prettyDate = require(`./${filtersDir}/pretty-date`);
const stripBlog = require(`./${filtersDir}/strip-blog`);
const stripLanguage = require(`./${filtersDir}/strip-language`);
module.exports = function(config) {
//----------------------------------------------------------------------------
// PLUGINS
//----------------------------------------------------------------------------
// Syntax highlighting for code snippets
config.addPlugin(pluginSyntaxHighlight);
// RSS feeds
config.addPlugin(pluginRss);
//----------------------------------------------------------------------------
// MARKDOWN
//----------------------------------------------------------------------------
let markdownItOptions = {
html: true,
};
let markdownItAnchorOptions = {
level: 2,
permalink: true,
permalinkClass: 'w-headline-link',
permalinkSymbol: '#',
slugify: function(str) {
return slugify(str, {
replacement: '-',
lower: true,
});
},
};
config.setLibrary(
'md',
markdownIt(markdownItOptions).use(markdownItAnchor, markdownItAnchorOptions)
);
//----------------------------------------------------------------------------
// COLLECTIONS
//----------------------------------------------------------------------------
config.addCollection('postDescending', postDescending);
config.addCollection('postsWithLighthouse', postsWithLighthouse);
config.addCollection('recentPosts', recentPosts);
// Turn collection.all into a lookup table so we can use findBySlug
// to quickly find collection items without looping.
config.addCollection('memoized', function(collection) {
return memoize(collection.getAll());
});
//----------------------------------------------------------------------------
// FILTERS
//----------------------------------------------------------------------------
config.addFilter('findBySlug', findBySlug);
config.addFilter('pathSlug', pathSlug);
config.addFilter('containsTag', containsTag);
config.addFilter('githubLink', githubLink);
config.addFilter('postsLighthouseJson', postsLighthouseJson);
config.addFilter('prettyDate', prettyDate);
config.addFilter('stripBlog', stripBlog);
config.addFilter('stripLanguage', stripLanguage);
//----------------------------------------------------------------------------
// SHORTCODES
//----------------------------------------------------------------------------
config.addPairedShortcode('Actions', Actions);
config.addShortcode('ArticleNavigation', ArticleNavigation);
config.addPairedShortcode('Aside', Aside);
config.addShortcode('Author', Author);
config.addShortcode('AuthorInfo', AuthorInfo);
config.addShortcode('Breadcrumbs', Breadcrumbs);
config.addShortcode('CodelabsCallout', CodelabsCallout);
config.addPairedShortcode('Compare', Compare);
config.addShortcode('Hero', Hero);
config.addShortcode('PathCard', PathCard);
config.addShortcode('PostCard', PostCard);
config.addShortcode('ShareAction', ShareAction);
config.addShortcode('SubscribeAction', SubscribeAction);
// https://www.11ty.io/docs/config/#configuration-options
return {
dir: {
input: 'src/site/content',
output: 'dist',
data: '../_data',
includes: '../_includes',
},
templateFormats: ['njk', 'md'],
htmlTemplateEngine: 'njk',
markdownTemplateEngine: 'njk',
// Because eleventy's passthroughFileCopy does not work with permalinks
// we need to manually copy assets ourselves using gulp.
// https://github.com/11ty/eleventy/issues/379
passthroughFileCopy: false,
};
};