From 2489da5b17ff1fdea4e3baf5780343702ef4675e Mon Sep 17 00:00:00 2001 From: codecalm Date: Thu, 25 Aug 2022 15:24:05 +0200 Subject: [PATCH] fix icon tags --- src/tags.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tags.json b/src/tags.json index 3e698f20c..1c2a720e2 100644 --- a/src/tags.json +++ b/src/tags.json @@ -1,7 +1,8 @@ --- --- +{% assign common-tags = 'icon,stroke,outline' | split: ',' %} { {% for icon in site.icons %} -{% assign slug-tags = icon.slug | split: '-' %}{% assign tags = slug-tags | concat: icon.tags %} "{{ icon.slug }}": { +{% assign slug-tags = icon.slug | split: '-' %}{% assign tags = slug-tags | concat: icon.tags | concat: common-tags %} "{{ icon.slug }}": { "category": "{{ icon.category }}", "tags": ["{{ tags | join: '", "' }}"], "version": "{{ icon.version }}",