Eleventy shortcode.
Allows @fortawesome/free-regular-svg-icons to be embedded as inline svg into 11ty templates.
See available icons here: font-awesome-5-regular
$ npm install @vidhill/fortawesome-free-regular-11ty-shortcode --save
Option A: Import as a plugin, shortcodes names are fixed, if you want to name the shortcodes yourself see Option B
const {
fortawesomeFreeRegularPlugin,
} = require('@vidhill/fortawesome-free-regular-11ty-shortcode');
module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(fortawesomeFreeRegularPlugin);
return {
// normal eleventy config
};
};
Option B: import the render function so that a custom shortcode name can be defined
const {
fortawesomeFreeRegularShortcode,
} = require('@vidhill/fortawesome-brands-11ty-shortcode');
module.exports = function (eleventyConfig) {
eleventyConfig.addShortcode(
'fortawesomeRegular',
fortawesomeFreeRegularShortcode,
);
return {
// normal eleventy config
};
};
{% fortawesomeRegular 'bell' %}
<svg
aria-hidden="true"
focusable="false"
data-prefix="far"
data-icon="bell"
class="svg-inline--fa fa-bell fa-w-16"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
>
<path fill="currentColor" d="M165.9 397.4c0....4-2.3-4-3.3-5.6-2z"></path>
</svg>
Specifying a css class to be added to the svg
element
{% fortawesomeBrand 'bell', "social-icon" %}
<svg
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="bell"
class="svg-inline--fa fa-bell fa-w-16 social-icon"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
>
<path fill="currentColor" d="M165.9 397.4c0....4-2.3-4-3.3-5.6-2z"></path>
</svg>
Multiple css class to be added to they svg by passing a comma separated string:
{% fortawesomeBrand 'bell', "social-icon,unicorn-icon" %}
- Build:
pnpm run build
- Watch build:
pnpm run dev
- Run tests:
pnpm run test
- Watch tests:
pnpm run test:watch