-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy path.eleventy.js
92 lines (85 loc) · 2.82 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
/**
* Copyright 2021 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 eleventyNavigationPlugin = require("@11ty/eleventy-navigation");
const prism = require('markdown-it-prism');
module.exports = eleventyConfig => {
eleventyConfig.setUseGitIgnore(false);
eleventyConfig.addPlugin(eleventyNavigationPlugin);
eleventyConfig.addWatchTarget("./_tmp/style.css");
eleventyConfig.addPassthroughCopy({ "./src/styles/prism.css": "./prism.css"});
eleventyConfig.addPassthroughCopy({ "./src/js/**/*.js": "./js"});
eleventyConfig.addPassthroughCopy({ "./_tmp/style.css": "./style.css" });
eleventyConfig.setLibrary("md", configureMarkdownIt());
registerShortcodes(eleventyConfig);
return {
dir: {
input: "src",
output: "public"
},
templateFormats: [
"md",
"njk",
"html",
"svg",
"woff2",
"ico",
],
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk",
dataTemplateEngine: "njk",
};
};
function configureMarkdownIt() {
return require("markdown-it")({
html: true,
linkify: true,
replaceLink: function rewriteRelativeLinks (link, env) {
// TODO(davideast): Create readable expressions or matches
// for this if statement tree.
if (link.indexOf('./') !== -1) {
link = link.replace('./', '/reference/');
if (link === '/reference/index') {
link = '/reference';
}
if (link === '/reference/firestore') {
link = '/reference/firestore_';
}
}
return link;
}
}).use(require('markdown-it-attrs'))
// https://github.com/markdown-it/markdown-it-container/issues/23
.use(require('markdown-it-container'), 'dynamic', {
validate: function () { return true; },
render: function (tokens, idx) {
const token = tokens[idx];
if (token.nesting === 1) {
return '<div class="' + token.info.trim() + '">';
} else {
return '</div>';
}
},
})
.use(require('markdown-it-replace-link'))
.use(prism);
}
function registerShortcodes(eleventyConfig) {
const { shortcodes } = require('./src/shortcodes');
shortcodes.forEach(shortcode => {
console.log(`Creating shortcode: ${shortcode.name} as ${shortcode.type}`);
eleventyConfig[shortcode.type](shortcode.name, shortcode.create);
});
}