diff --git a/README.md b/README.md index 7dbe328..8fb651a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Shortcodes to add [tabler icons](https://tabler-icons.io) to your [Eleventy](htt Install the package: ```sh -npm i -D eleventy-plugin-tablericons +npm i -D @cdransf/eleventy-tabler-icons-filled ``` Then add the plugin to your `.eleventy.js` file: @@ -15,23 +15,23 @@ Then add the plugin to your `.eleventy.js` file: ```js // .eleventy.js module.exports = eleventyConfig => { - eleventyConfig.addPlugin(require('eleventy-plugin-tablericons')); + eleventyConfig.addPlugin(require('@cdransf/eleventy-tabler-icons-filled')); } ``` ## Usage -This plugin adds the `tablericon` shortcode. +This plugin adds the `tablericon-filled` shortcode. **Note**: These examples use Liquid template syntax, which is the default for Eleventy. If you are using another template engine like Nunjucks, the syntax might be slightly different. -### `tablericon` +### `tablericon-filled` Args: `name: string`, `alt?: string` ```md -{% tablericon "archive" %} -{% tablericon "x" "Close menu" %} +{% tablericon-filled "archive" %} +{% tablericon-filled "x" "Close menu" %} ``` ## Configuration @@ -46,7 +46,7 @@ Pass the configuration object when adding the plugin: ```js // .eleventy.js module.exports = eleventyConfig => { - eleventyConfig.addPlugin(require('eleventy-plugin-tablericons'), { + eleventyConfig.addPlugin(require('@cdransf/eleventy-tabler-icons-filled'), { className: 'icon', errorOnMissing: true }); diff --git a/tablericons.js b/tablericons.js index e97fc4a..6c6d76b 100644 --- a/tablericons.js +++ b/tablericons.js @@ -25,7 +25,7 @@ module.exports = function tablericons(eleventyConfig, config = initialConfig) { }`; } - eleventyConfig.addShortcode("tablericon", function (name, alt, attrs) { + eleventyConfig.addShortcode("tablericon-filled", function (name, alt, attrs) { return tablericons(this, name, alt, attrs); }); };