diff options
author | Anton <info@ensostudio.ru> | 2022-04-07 11:24:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 11:24:30 +0300 |
commit | c57320d417e4fe2d724112d0811fae56e2e9866d (patch) | |
tree | c766eac396575bed1e2e09464fbcd4c66a13f606 | |
parent | fix `antenna-bars-off` (diff) | |
download | tabler-icons-c57320d417e4fe2d724112d0811fae56e2e9866d.tar.xz |
Optimize `src/tags.json`
-rw-r--r-- | src/tags.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tags.json b/src/tags.json index cab4e929..3fbfc7ad 100644 --- a/src/tags.json +++ b/src/tags.json @@ -3,7 +3,7 @@ { {% for icon in site.icons %} {% assign slug-tags = icon.slug | split: '-' %}{% assign tags = slug-tags | concat: icon.tags %} "{{ icon.slug }}": { "category": "{{ icon.category }}", - "tags": [{% for tag in tags %}"{{ tag }}"{% unless forloop.last %}, {% endunless %}{% endfor %}], + "tags": ["{{ tags | join: '", "' }}"], "version": "{{ icon.version }}" }{% unless forloop.last %}, {% endunless %}{% endfor %} } |