Skip to content

Instantly share code, notes, and snippets.

@banuragaxioned
Created June 23, 2021 07:46
Show Gist options
  • Save banuragaxioned/d61269be5e568a33523481f303b8eedb to your computer and use it in GitHub Desktop.
Save banuragaxioned/d61269be5e568a33523481f303b8eedb to your computer and use it in GitHub Desktop.
Updated version of maxboeck's eleventastic - /utils/shortcodes.js
module.exports = {
icon: function (name) {
return `<svg class="icon icon--${name}" role="img" aria-hidden="true">
<use xlink:href="#icon-${name}"></use>
</svg>`
},
logo: function (name, width, height) {
return `<svg class="logo-default-${name}" role="img" aria-hidden="true" width="${width}", height="${height}">
<use xlink:href="#icon-${name}"></use>
</svg>`
},
colorlogo: function (name, width, height, fill) {
return `<svg class="logo-color-${name}" role="img" aria-hidden="true" width="${width}", height="${height}">
<use xlink:href="#icon-${name}" fill="${fill}"></use>
</svg>`
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment