-
Notifications
You must be signed in to change notification settings - Fork 94
/
eleventy.config.cjs
127 lines (104 loc) · 3.96 KB
/
eleventy.config.cjs
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
const { EleventyRenderPlugin } = require('@11ty/eleventy');
const SyntaxHighlightPlugin = require('@11ty/eleventy-plugin-syntaxhighlight');
const DirectoryOutputPlugin = require('@11ty/eleventy-plugin-directory-output');
const PfeAssetsPlugin = require('./docs/_plugins/pfe-assets.cjs');
const EmptyParagraphPlugin = require('./docs/_plugins/empty-p.cjs');
const CreateImportMapPlugin = require('./docs/_plugins/create-import-map.cjs');
const HTMLExamplePlugin = require('./docs/_plugins/html-example.cjs');
const CEMRenderPlugin = require('./docs/_plugins/cem-render.cjs');
const AnchorsPlugin = require('@patternfly/pfe-tools/11ty/plugins/anchors.cjs');
const CustomElementsManifestPlugin =
require('@patternfly/pfe-tools/11ty/plugins/custom-elements-manifest.cjs');
const OrderTagsPlugin = require('@patternfly/pfe-tools/11ty/plugins/order-tags.cjs');
const TodosPlugin = require('@patternfly/pfe-tools/11ty/plugins/todos.cjs');
const TocPlugin = require('@patternfly/pfe-tools/11ty/plugins/table-of-contents.cjs');
const markdownItAnchor = require('markdown-it-anchor');
/** @param {import('@11ty/eleventy/src/UserConfig')} eleventyConfig */
module.exports = function(eleventyConfig) {
eleventyConfig.amendLibrary('md', md => md.use(markdownItAnchor));
eleventyConfig.setQuietMode(true);
eleventyConfig.setWatchThrottleWaitTime(500);
eleventyConfig.addPlugin(EleventyRenderPlugin);
/** Table of Contents Shortcode */
eleventyConfig.addPlugin(TocPlugin, { tags: ['h2', 'h3', 'h4'] });
/** Copy and manage site assets from the monorepo */
eleventyConfig.addPlugin(PfeAssetsPlugin);
/** Generate and consume custom elements manifests */
eleventyConfig.addPlugin(CustomElementsManifestPlugin);
/** Render docs based on custom elements manifests */
eleventyConfig.addPlugin(CEMRenderPlugin);
/** Collections to organize alphabetically instead of by date */
eleventyConfig.addPlugin(OrderTagsPlugin, { tags: ['component'], order: 'alphabetical' });
/** Collections to organize by order instead of date */
eleventyConfig.addPlugin(OrderTagsPlugin, { tags: ['develop'] });
/** list todos */
eleventyConfig.addPlugin(TodosPlugin);
/** format date strings */
eleventyConfig.addFilter('prettyDate', function(dateStr, options = {}) {
const { dateStyle = 'medium' } = options;
return new Intl.DateTimeFormat('en-US', { dateStyle })
.format(new Date(dateStr));
});
/** fancy syntax highlighting with diff support */
eleventyConfig.addPlugin(SyntaxHighlightPlugin, {
init() {
const register = require('prismjs/components/index');
register([
'html',
'regex',
'js-templates',
'javascript',
]);
},
});
/** Strip empty paragraphs */
eleventyConfig.addPlugin(EmptyParagraphPlugin);
/** Create import maps from script tags */
eleventyConfig.addPlugin(CreateImportMapPlugin);
/** Add IDs to heading elements */
eleventyConfig.addPlugin(AnchorsPlugin, {
exclude: /\/components\/.*\/demo\//,
formatter($, existingids) {
if (
!existingids.includes($.attr('id'))
&& $.attr('slot')
&& $.closest('pf-card')
) {
return null;
} else {
return eleventyConfig.javascriptFunctions
.slug($.text())
.replace(/[&,+()$~%.'":*?!<>{}]/g, '');
}
},
});
if (!process.argv.some(arg =>
arg.match(/--((w)(atch)?)|((s)(erve))?/))) {
eleventyConfig.addPlugin(DirectoryOutputPlugin, {
// Customize columns
columns: {
filesize: true, // Use `false` to disable
benchmark: true, // Use `false` to disable
},
// Will show in yellow if greater than this number of bytes
warningFileSize: 400 * 1000,
});
}
eleventyConfig.addPlugin(HTMLExamplePlugin);
return {
dir: {
input: './docs',
},
markdownTemplateEngine: 'njk',
templateFormats: [
'11ty.js',
'html',
'njk',
'md',
'css',
'js',
'svg',
'png',
],
};
};