aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tags.html (renamed from src/_tags.html)1
-rw-r--r--src/tags.json3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/_tags.html b/src/tags.html
index fbd5b54d..aa71db32 100644
--- a/src/_tags.html
+++ b/src/tags.html
@@ -13,6 +13,7 @@ layout: default
<td>{{ icon.tags | join: ', ' }}</td>
<td>{{ icon.category }}</td>
<td>{{ icon.version }}</td>
+ <td>{{ icon.unicode }}</td>
</tr>
{% if icon.tags.size == 0 %}
{% assign i = i | plus: 1 %}
diff --git a/src/tags.json b/src/tags.json
index cab4e929..3b2d3fef 100644
--- a/src/tags.json
+++ b/src/tags.json
@@ -4,6 +4,7 @@
{% 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 %}],
- "version": "{{ icon.version }}"
+ "version": "{{ icon.version }}",
+ "unicode": "{{ icon.unicode }}"
}{% unless forloop.last %}, {% endunless %}{% endfor %}
}