-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetIcons.js
43 lines (41 loc) · 1.19 KB
/
getIcons.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
const pluginIcons = require('eleventy-plugin-icons');
function getIcons(eleventyConfig) {
eleventyConfig.addPlugin(pluginIcons, {
mode: 'inline',
sources: [{
name: 'si',
path: 'node_modules/simple-icons/icons'
},
{
name: 'mdi',
path: 'node_modules/@mdi/svg/svg'
}
],
icon: {
shortcode: 'icon',
delimiter: ':',
transform: async (content) => content,
class: (name, source) => `icon icon-${name}`,
id: (name, source) => `icon-${name}`,
attributes: {},
attributesBySource: {},
overwriteExistingAttributes: true,
errorNotFound: true,
},
sprite: {
shortcode: 'spriteSheet',
attributes: {
class: 'sprite-sheet',
'aria-hidden': 'true',
xmlns: 'http://www.w3.org/2000/svg',
},
extraIcons: {
all: false,
sources: [],
icons: [],
},
writeFile: false,
},
});
}
module.exports = getIcons;