octicons 1.1.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: aa3eeb410a24dcd75482f20b6bd0781c925de34c
4
- data.tar.gz: eb273834778e0a64abb7c0872668124990de4d3c
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MDQ3MTQ3MmZlNzIwMGJkODVkMjdhNGZjODhkOTVmNjMzZjdkY2ViNA==
5
+ data.tar.gz: !binary |-
6
+ ZDA3NWUyMjA0MjRmY2E1ZjEzMWJhZGI1MTQ0MmMxMWYzNzRjOTU4OQ==
5
7
  SHA512:
6
- metadata.gz: 1462667e821dae27c878c54062e593b8a703d6e600ce4d1bc05d18a22ceec916b6ffb28b6d45525441b33624c417048eecaefc1d5523423f60065b5bae2dea5f
7
- data.tar.gz: bae7f385ef8fe074dfcf0d4176e21a0e4968d340bf2081bde6b02e708619e66e2c1ee3b21c9bc5a0212a39726be6732535a8235509b4be856058e067e99ccaf2
8
+ metadata.gz: !binary |-
9
+ M2VhNDg2MTAzYjNjZDRkYzQ3OTRkMGI2NzY5OGIxMGUxNjlkZDEwZjlkNGZh
10
+ ODg2M2YwNDI2OGNiYzg3MjgzOGVhMTBlNGE5NzgwZTc2NDA0ZTY2YmZjZWU1
11
+ YTRkY2EyYWEwYjQzNWM0MDg2MGExMmRkZDc1MTJjYThiZDY0MzE=
12
+ data.tar.gz: !binary |-
13
+ YmY3NzRhZTQ0YjU2NjgyOGZlOGU2NGI0NTk3MzYwOTgyMjY5Nzk2YzVmZjAz
14
+ ZWM0MzIyNjc1Mzc2OGU3OTk4MGIwYWIxNWI4ODllYjE1NjBmMzk0OGVmNTgw
15
+ OTIzZDVlMmZjNWMyOTc5M2Q3ZTMxNDZhMzJkOTQxZGI0YmQ5YWU=
data/README.md CHANGED
@@ -19,22 +19,67 @@ Then `bundle install`.
19
19
 
20
20
  ```rb
21
21
  require 'octicons'
22
- icon = Octicons::Octicon.new( :symbol => "x" )
22
+ icon = Octicons::Octicon.new("x")
23
23
  icon.to_svg
24
24
  # <svg class="octicon octicon-x" viewBox="0 0 16 16" width="16" height="16" version="1.1" "aria-hidden"="true"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
25
25
  ```
26
26
 
27
27
  ## Documentation
28
28
 
29
- The `Octicon` class takes a hash of arguments to construct the icon you want
29
+ The `Octicon` class takes two arguments. The first is the symbol of the icon, and the second is a hash of arguments representing html attributes
30
+
31
+ #### `symbol` _(required)_
32
+
33
+ This is the name of the octicon you want to use. For example `alert`. [Full list of icons][octicons-docs]
30
34
 
31
35
  #### Options
32
36
 
33
- * `:symbol` _(required)_ - This is the name of the octicon you want to use. For example `alert`. [Full list of icons][octicons-docs]
34
- * `:size` - This will help output 16 or 32 sized icons. if you pass "large" the icon will be double the size. You can also pass an number and the icon will be scaled properly.
35
- * `:width`, `:height` - width and height are exact sizes, if you have an odd shape like the gist logo, pass in exact dimensions
37
+ * `:height` - When setting the height to a number, the icon will scale to that size. For example, passing `32`, will calculate the width based on the icon's natural size.
38
+ * `:width` - When setting the width to a number, the icon will scale to that size. For example, passing `32`, will calculate the width based on the icon's natural size.
39
+
40
+ If both `:width, :height` are passed into the options hash, then the icon will be sized exactly at those dimensions.
41
+
42
+ #### Attributes
43
+
44
+ Once initialized, you can read a few properties from the icon.
45
+
46
+ ##### `symbol`
47
+
48
+ Returns the string of the symbol name
49
+
50
+ ```rb
51
+ icon = Octicons::Octicon.new("x")
52
+ icon.symbol
53
+ # "x"
54
+ ```
55
+
56
+ ##### `path`
57
+
58
+ Path returns the string representation of the path of the icon.
59
+
60
+ ```rb
61
+ icon = Octicons::Octicon.new("x")
62
+ icon.path
63
+ # <path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path>
64
+ ```
65
+
66
+ ##### `options`
67
+
68
+ This is a hash of all the `options` that will be added to the output tag.
69
+
70
+ ```rb
71
+ icon = Octicons::Octicon.new("x")
72
+ icon.options
73
+ # {:class=>"octicon octicon-x", :viewBox=>"0 0 12 16", :version=>"1.1", :width=>12, :height=>16, :"aria-hidden"=>"true"}
74
+ ```
75
+
76
+ ##### `width`
77
+
78
+ Width is the icon's true width. Based on the svg view box width. _Note, this doesn't change if you scale it up with size options, it only is the natural width of the icon_
36
79
 
37
- Everything else passed in through the options hash will be treated as html attributes and added to the svg tag.
80
+ ##### `height`
81
+
82
+ Height is the icon's true height. Based on the svg view box height. _Note, this doesn't change if you scale it up with size options, it only is the natural height of the icon_
38
83
 
39
84
  #### Methods
40
85
 
@@ -43,11 +88,51 @@ Everything else passed in through the options hash will be treated as html attri
43
88
  Returns a string of the svg tag
44
89
 
45
90
  ```rb
46
- icon = Octicons::Octicon.new( :symbol => "x" )
91
+ icon = Octicons::Octicon.new("x")
47
92
  icon.to_svg
48
93
  # <svg class="octicon octicon-x" viewBox="0 0 16 16" width="16" height="16" version="1.1" "aria-hidden"="true"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
49
94
  ```
50
95
 
96
+ ##### `keywords`
97
+
98
+ Returns an array of keywords for the icon. The data [comes from the octicons repository](https://github.com/primer/octicons/blob/master/lib/keywords.json). Consider contributing more aliases for the icons.
99
+
100
+ ```rb
101
+ icon = Octicons::Octicon.new("x")
102
+ icon.keywords
103
+ # ["remove", "close", "delete"]
104
+ ```
105
+
106
+ ##### `decimal`
107
+
108
+ Returns an `Integer` representing the codepoint of the character within the font file.
109
+
110
+ ```rb
111
+ icon = Octicons::Octicon.new("alert")
112
+ icon.decimal
113
+ # 61485
114
+ ```
115
+
116
+ ##### `hexadecimal`
117
+
118
+ Returns an `String` representing the hexadecimal codepoint of the character within the font file.
119
+
120
+ ```rb
121
+ icon = Octicons::Octicon.new("alert")
122
+ icon.hexadecimal
123
+ # "f02d"
124
+ ```
125
+
126
+ ##### `character`
127
+
128
+ Returns the unicode character of the icon. When placing this with the octicons font turned on, you'll see the icon.
129
+
130
+ ```rb
131
+ icon = Octicons::Octicon.new("alert")
132
+ icon.character
133
+ # ""
134
+ ```
135
+
51
136
  ## License
52
137
 
53
138
  _Code License:_ [MIT](./LICENSE) &copy; [GitHub](https://github.com/)
@@ -0,0 +1,174 @@
1
+ {
2
+ "alert": 61485,
3
+ "arrow-down": 61503,
4
+ "arrow-left": 61504,
5
+ "arrow-right": 61502,
6
+ "arrow-small-down": 61600,
7
+ "arrow-small-left": 61601,
8
+ "arrow-small-right": 61553,
9
+ "arrow-small-up": 61599,
10
+ "arrow-up": 61501,
11
+ "beaker": 61661,
12
+ "bell": 61662,
13
+ "bold": 61666,
14
+ "book": 61447,
15
+ "bookmark": 61563,
16
+ "briefcase": 61651,
17
+ "broadcast": 61512,
18
+ "browser": 61637,
19
+ "bug": 61585,
20
+ "calendar": 61544,
21
+ "check": 61498,
22
+ "checklist": 61558,
23
+ "chevron-down": 61603,
24
+ "chevron-left": 61604,
25
+ "chevron-right": 61560,
26
+ "chevron-up": 61602,
27
+ "circle-slash": 61572,
28
+ "circuit-board": 61654,
29
+ "clippy": 61493,
30
+ "clock": 61510,
31
+ "cloud-download": 61451,
32
+ "cloud-upload": 61452,
33
+ "code": 61535,
34
+ "comment": 61483,
35
+ "comment-discussion": 61519,
36
+ "credit-card": 61509,
37
+ "dash": 61642,
38
+ "dashboard": 61565,
39
+ "database": 61590,
40
+ "device-camera": 61526,
41
+ "device-camera-video": 61527,
42
+ "device-desktop": 62076,
43
+ "device-mobile": 61496,
44
+ "desktop-download": 61660,
45
+ "diff": 61517,
46
+ "diff-added": 61547,
47
+ "diff-ignored": 61593,
48
+ "diff-modified": 61549,
49
+ "diff-removed": 61548,
50
+ "diff-renamed": 61550,
51
+ "ellipsis": 61594,
52
+ "eye": 61518,
53
+ "file-binary": 61588,
54
+ "file-code": 61456,
55
+ "file-directory": 61462,
56
+ "file-media": 61458,
57
+ "file-pdf": 61460,
58
+ "file-submodule": 61463,
59
+ "file-symlink-directory": 61617,
60
+ "file-symlink-file": 61616,
61
+ "file-text": 61457,
62
+ "file-zip": 61459,
63
+ "flame": 61650,
64
+ "fold": 61644,
65
+ "gear": 61487,
66
+ "gift": 61506,
67
+ "gist": 61454,
68
+ "gist-secret": 61580,
69
+ "git-branch": 61472,
70
+ "git-commit": 61471,
71
+ "git-compare": 61612,
72
+ "git-merge": 61475,
73
+ "git-pull-request": 61449,
74
+ "globe": 61622,
75
+ "graph": 61507,
76
+ "heart": 9829,
77
+ "history": 61566,
78
+ "home": 61581,
79
+ "horizontal-rule": 61552,
80
+ "hubot": 61597,
81
+ "inbox": 61647,
82
+ "info": 61529,
83
+ "issue-closed": 61480,
84
+ "issue-opened": 61478,
85
+ "issue-reopened": 61479,
86
+ "italic": 61668,
87
+ "jersey": 61465,
88
+ "key": 61513,
89
+ "keyboard": 61453,
90
+ "law": 61656,
91
+ "light-bulb": 61440,
92
+ "link": 61532,
93
+ "link-external": 61567,
94
+ "list-ordered": 61538,
95
+ "list-unordered": 61537,
96
+ "location": 61536,
97
+ "lock": 61546,
98
+ "logo-gist": 61613,
99
+ "logo-github": 61586,
100
+ "mail": 61499,
101
+ "mail-read": 61500,
102
+ "mail-reply": 61521,
103
+ "mark-github": 61450,
104
+ "markdown": 61641,
105
+ "megaphone": 61559,
106
+ "mention": 61630,
107
+ "milestone": 61557,
108
+ "mirror": 61476,
109
+ "mortar-board": 61655,
110
+ "mute": 61568,
111
+ "no-newline": 61596,
112
+ "octoface": 61448,
113
+ "organization": 61495,
114
+ "package": 61636,
115
+ "paintcan": 61649,
116
+ "pencil": 61528,
117
+ "person": 61464,
118
+ "pin": 61505,
119
+ "plug": 61652,
120
+ "plus": 61533,
121
+ "primitive-dot": 61522,
122
+ "primitive-square": 61523,
123
+ "pulse": 61573,
124
+ "question": 61484,
125
+ "quote": 61539,
126
+ "radio-tower": 61488,
127
+ "repo": 61441,
128
+ "repo-clone": 61516,
129
+ "repo-force-push": 61514,
130
+ "repo-forked": 61442,
131
+ "repo-pull": 61446,
132
+ "repo-push": 61445,
133
+ "rocket": 61491,
134
+ "rss": 61492,
135
+ "ruby": 61511,
136
+ "search": 61486,
137
+ "server": 61591,
138
+ "settings": 61564,
139
+ "shield": 61665,
140
+ "sign-in": 61494,
141
+ "sign-out": 61490,
142
+ "smiley": 61671,
143
+ "squirrel": 61618,
144
+ "star": 61482,
145
+ "stop": 61583,
146
+ "sync": 61575,
147
+ "tag": 61461,
148
+ "tasklist": 61669,
149
+ "telescope": 61576,
150
+ "terminal": 61640,
151
+ "text-size": 61667,
152
+ "three-bars": 61534,
153
+ "thumbsup": 61658,
154
+ "thumbsdown": 61659,
155
+ "tools": 61489,
156
+ "trashcan": 61648,
157
+ "triangle-down": 61531,
158
+ "triangle-left": 61508,
159
+ "triangle-right": 61530,
160
+ "triangle-up": 61610,
161
+ "unfold": 61497,
162
+ "unmute": 61626,
163
+ "unverified": 61672,
164
+ "verified": 61670,
165
+ "versions": 61540,
166
+ "watch": 61664,
167
+ "x": 61569,
168
+ "zap": 9889,
169
+ "ellipses": 61697,
170
+ "file": 61698,
171
+ "grabber": 61699,
172
+ "plus-small": 61700,
173
+ "reply": 61701
174
+ }
@@ -0,0 +1,1146 @@
1
+ {
2
+ "alert": {
3
+ "keywords": [
4
+ "warning",
5
+ "triangle",
6
+ "exclamation",
7
+ "point"
8
+ ]
9
+ },
10
+ "arrow-down": {
11
+ "keywords": [
12
+ "point",
13
+ "direction"
14
+ ]
15
+ },
16
+ "arrow-left": {
17
+ "keywords": [
18
+ "point",
19
+ "direction"
20
+ ]
21
+ },
22
+ "arrow-right": {
23
+ "keywords": [
24
+ "point",
25
+ "direction"
26
+ ]
27
+ },
28
+ "arrow-small-down": {
29
+ "keywords": [
30
+ "point",
31
+ "direction"
32
+ ]
33
+ },
34
+ "arrow-small-left": {
35
+ "keywords": [
36
+ "point",
37
+ "direction",
38
+ "little",
39
+ "tiny"
40
+ ]
41
+ },
42
+ "arrow-small-right": {
43
+ "keywords": [
44
+ "point",
45
+ "direction",
46
+ "little",
47
+ "tiny"
48
+ ]
49
+ },
50
+ "arrow-small-up": {
51
+ "keywords": [
52
+ "point",
53
+ "direction",
54
+ "little",
55
+ "tiny"
56
+ ]
57
+ },
58
+ "arrow-up": {
59
+ "keywords": [
60
+ "point",
61
+ "direction"
62
+ ]
63
+ },
64
+ "beaker": {
65
+ "keywords": [
66
+ "experiment",
67
+ "labs",
68
+ "experimental",
69
+ "feature",
70
+ "test",
71
+ "science",
72
+ "education",
73
+ "study",
74
+ "development",
75
+ "testing"
76
+ ]
77
+ },
78
+ "bell": {
79
+ "keywords": [
80
+ "notification"
81
+ ]
82
+ },
83
+ "bold": {
84
+ "keywords": [
85
+ "bold"
86
+ ]
87
+ },
88
+ "book": {
89
+ "keywords": [
90
+ "book",
91
+ "journal",
92
+ "wiki",
93
+ "readme"
94
+ ]
95
+ },
96
+ "bookmark": {
97
+ "keywords": [
98
+ "tabbard"
99
+ ]
100
+ },
101
+ "briefcase": {
102
+ "keywords": [
103
+ "suitcase",
104
+ "business"
105
+ ]
106
+ },
107
+ "broadcast": {
108
+ "keywords": [
109
+ "rss",
110
+ "radio",
111
+ "signal"
112
+ ]
113
+ },
114
+ "browser": {
115
+ "keywords": [
116
+ "window",
117
+ "web"
118
+ ]
119
+ },
120
+ "bug": {
121
+ "keywords": [
122
+ "insect"
123
+ ]
124
+ },
125
+ "calendar": {
126
+ "keywords": [
127
+ "time",
128
+ "day",
129
+ "month",
130
+ "year"
131
+ ]
132
+ },
133
+ "check": {
134
+ "keywords": [
135
+ "mark",
136
+ "yes",
137
+ "confirm",
138
+ "accept",
139
+ "ok",
140
+ "success"
141
+ ]
142
+ },
143
+ "checklist": {
144
+ "keywords": [
145
+ "todo"
146
+ ]
147
+ },
148
+ "chevron-down": {
149
+ "keywords": [
150
+ "triangle",
151
+ "arrow"
152
+ ]
153
+ },
154
+ "chevron-left": {
155
+ "keywords": [
156
+ "triangle",
157
+ "arrow"
158
+ ]
159
+ },
160
+ "chevron-right": {
161
+ "keywords": [
162
+ "triangle",
163
+ "arrow"
164
+ ]
165
+ },
166
+ "chevron-up": {
167
+ "keywords": [
168
+ "triangle",
169
+ "arrow"
170
+ ]
171
+ },
172
+ "circle-slash": {
173
+ "keywords": [
174
+ "no",
175
+ "deny",
176
+ "fail",
177
+ "failure",
178
+ "error",
179
+ "bad"
180
+ ]
181
+ },
182
+ "circuit-board": {
183
+ "keywords": [
184
+ "developer",
185
+ "hardware",
186
+ "electricity"
187
+ ]
188
+ },
189
+ "clippy": {
190
+ "keywords": [
191
+ "copy",
192
+ "paste",
193
+ "save",
194
+ "capture"
195
+ ]
196
+ },
197
+ "clock": {
198
+ "keywords": [
199
+ "time",
200
+ "hour",
201
+ "minute",
202
+ "second"
203
+ ]
204
+ },
205
+ "cloud-download": {
206
+ "keywords": [
207
+ "save",
208
+ "install",
209
+ "get"
210
+ ]
211
+ },
212
+ "cloud-upload": {
213
+ "keywords": [
214
+ "put",
215
+ "export"
216
+ ]
217
+ },
218
+ "code": {
219
+ "keywords": [
220
+ "brackets"
221
+ ]
222
+ },
223
+ "comment": {
224
+ "keywords": [
225
+ "speak",
226
+ "bubble"
227
+ ]
228
+ },
229
+ "comment-discussion": {
230
+ "keywords": [
231
+ "converse",
232
+ "talk"
233
+ ]
234
+ },
235
+ "credit-card": {
236
+ "keywords": [
237
+ "money",
238
+ "billing",
239
+ "payments",
240
+ "transactions"
241
+ ]
242
+ },
243
+ "dash": {
244
+ "keywords": [
245
+ "hyphen",
246
+ "range"
247
+ ]
248
+ },
249
+ "dashboard": {
250
+ "keywords": [
251
+ "speed",
252
+ "dial"
253
+ ]
254
+ },
255
+ "database": {
256
+ "keywords": [
257
+ "disks",
258
+ "data"
259
+ ]
260
+ },
261
+ "desktop-download": {
262
+ "keywords": [
263
+ "clone",
264
+ "download"
265
+ ]
266
+ },
267
+ "device-camera": {
268
+ "keywords": [
269
+ "photo",
270
+ "picture",
271
+ "image",
272
+ "snapshot"
273
+ ]
274
+ },
275
+ "device-camera-video": {
276
+ "keywords": [
277
+ "watch",
278
+ "view",
279
+ "media",
280
+ "stream"
281
+ ]
282
+ },
283
+ "device-desktop": {
284
+ "keywords": [
285
+ "computer",
286
+ "monitor"
287
+ ]
288
+ },
289
+ "device-mobile": {
290
+ "keywords": [
291
+ "phone",
292
+ "iphone",
293
+ "cellphone"
294
+ ]
295
+ },
296
+ "diff": {
297
+ "keywords": [
298
+ "difference",
299
+ "changes",
300
+ "compare"
301
+ ]
302
+ },
303
+ "diff-added": {
304
+ "keywords": [
305
+ "new",
306
+ "addition"
307
+ ]
308
+ },
309
+ "diff-ignored": {
310
+ "keywords": [
311
+ "slash"
312
+ ]
313
+ },
314
+ "diff-modified": {
315
+ "keywords": [
316
+ "dot",
317
+ "changed",
318
+ "updated"
319
+ ]
320
+ },
321
+ "diff-removed": {
322
+ "keywords": [
323
+ "deleted",
324
+ "subtracted",
325
+ "dash"
326
+ ]
327
+ },
328
+ "diff-renamed": {
329
+ "keywords": [
330
+ "moved",
331
+ "arrow"
332
+ ]
333
+ },
334
+ "ellipsis": {
335
+ "keywords": [
336
+ "read",
337
+ "more",
338
+ "hidden",
339
+ "expand"
340
+ ]
341
+ },
342
+ "eye": {
343
+ "keywords": [
344
+ "look",
345
+ "watch",
346
+ "see"
347
+ ]
348
+ },
349
+ "file-binary": {
350
+ "keywords": [
351
+ "image",
352
+ "video",
353
+ "word",
354
+ "powerpoint",
355
+ "excel"
356
+ ]
357
+ },
358
+ "file-code": {
359
+ "keywords": [
360
+ "text",
361
+ "javascript",
362
+ "html",
363
+ "css",
364
+ "php",
365
+ "ruby",
366
+ "coffeescript",
367
+ "sass",
368
+ "scss"
369
+ ]
370
+ },
371
+ "file-directory": {
372
+ "keywords": [
373
+ "folder"
374
+ ]
375
+ },
376
+ "file-media": {
377
+ "keywords": [
378
+ "image",
379
+ "video",
380
+ "audio"
381
+ ]
382
+ },
383
+ "file-pdf": {
384
+ "keywords": [
385
+ "adobe"
386
+ ]
387
+ },
388
+ "file-submodule": {
389
+ "keywords": [
390
+ "folder"
391
+ ]
392
+ },
393
+ "file-symlink-directory": {
394
+ "keywords": [
395
+ "folder",
396
+ "subfolder",
397
+ "link",
398
+ "alias"
399
+ ]
400
+ },
401
+ "file-symlink-file": {
402
+ "keywords": [
403
+ "link",
404
+ "alias"
405
+ ]
406
+ },
407
+ "file-text": {
408
+ "keywords": [
409
+ "document"
410
+ ]
411
+ },
412
+ "file-zip": {
413
+ "keywords": [
414
+ "compress",
415
+ "archive"
416
+ ]
417
+ },
418
+ "flame": {
419
+ "keywords": [
420
+ "fire",
421
+ "hot",
422
+ "burn",
423
+ "trending"
424
+ ]
425
+ },
426
+ "fold": {
427
+ "keywords": [
428
+ "unfold",
429
+ "hide",
430
+ "collapse"
431
+ ]
432
+ },
433
+ "gear": {
434
+ "keywords": [
435
+ "settings"
436
+ ]
437
+ },
438
+ "gift": {
439
+ "keywords": [
440
+ "package",
441
+ "present",
442
+ "skill",
443
+ "craft",
444
+ "freebie"
445
+ ]
446
+ },
447
+ "gist": {
448
+ "keywords": [
449
+ "gist",
450
+ "github"
451
+ ]
452
+ },
453
+ "gist-secret": {
454
+ "keywords": [
455
+ "gist",
456
+ "secret",
457
+ "private"
458
+ ]
459
+ },
460
+ "git-branch": {
461
+ "keywords": [
462
+ "branch",
463
+ "git"
464
+ ]
465
+ },
466
+ "git-commit": {
467
+ "keywords": [
468
+ "save"
469
+ ]
470
+ },
471
+ "git-compare": {
472
+ "keywords": [
473
+ "difference",
474
+ "changes"
475
+ ]
476
+ },
477
+ "git-merge": {
478
+ "keywords": [
479
+ "join"
480
+ ]
481
+ },
482
+ "git-pull-request": {
483
+ "keywords": [
484
+ "review"
485
+ ]
486
+ },
487
+ "globe": {
488
+ "keywords": [
489
+ "world"
490
+ ]
491
+ },
492
+ "graph": {
493
+ "keywords": [
494
+ "trend",
495
+ "stats",
496
+ "statistics"
497
+ ]
498
+ },
499
+ "heart": {
500
+ "keywords": [
501
+ "love"
502
+ ]
503
+ },
504
+ "history": {
505
+ "keywords": [
506
+ "time",
507
+ "past",
508
+ "revert",
509
+ "back"
510
+ ]
511
+ },
512
+ "home": {
513
+ "keywords": [
514
+ "welcome",
515
+ "index",
516
+ "house",
517
+ "building"
518
+ ]
519
+ },
520
+ "horizontal-rule": {
521
+ "keywords": [
522
+ "hr"
523
+ ]
524
+ },
525
+ "hubot": {
526
+ "keywords": [
527
+ "robot"
528
+ ]
529
+ },
530
+ "inbox": {
531
+ "keywords": [
532
+ "mail",
533
+ "todo",
534
+ "new",
535
+ "messages"
536
+ ]
537
+ },
538
+ "info": {
539
+ "keywords": [
540
+ "help"
541
+ ]
542
+ },
543
+ "issue-closed": {
544
+ "keywords": [
545
+ "done",
546
+ "complete"
547
+ ]
548
+ },
549
+ "issue-opened": {
550
+ "keywords": [
551
+ "new"
552
+ ]
553
+ },
554
+ "issue-reopened": {
555
+ "keywords": [
556
+ "regression"
557
+ ]
558
+ },
559
+ "italic": {
560
+ "keywords": [
561
+ "font",
562
+ "italic",
563
+ "style"
564
+ ]
565
+ },
566
+ "jersey": {
567
+ "keywords": [
568
+ "team",
569
+ "game",
570
+ "basketball"
571
+ ]
572
+ },
573
+ "key": {
574
+ "keywords": [
575
+ "key",
576
+ "lock",
577
+ "secure",
578
+ "safe"
579
+ ]
580
+ },
581
+ "keyboard": {
582
+ "keywords": [
583
+ "type",
584
+ "keys",
585
+ "write",
586
+ "shortcuts"
587
+ ]
588
+ },
589
+ "law": {
590
+ "keywords": [
591
+ "legal",
592
+ "bill"
593
+ ]
594
+ },
595
+ "light-bulb": {
596
+ "keywords": [
597
+ "idea"
598
+ ]
599
+ },
600
+ "link": {
601
+ "keywords": [
602
+ "connect",
603
+ "hyperlink"
604
+ ]
605
+ },
606
+ "link-external": {
607
+ "keywords": [
608
+ "out",
609
+ "see",
610
+ "more",
611
+ "go",
612
+ "to"
613
+ ]
614
+ },
615
+ "list-ordered": {
616
+ "keywords": [
617
+ "numbers",
618
+ "tasks",
619
+ "todo",
620
+ "items"
621
+ ]
622
+ },
623
+ "list-unordered": {
624
+ "keywords": [
625
+ "bullet",
626
+ "point",
627
+ "tasks",
628
+ "todo",
629
+ "items"
630
+ ]
631
+ },
632
+ "location": {
633
+ "keywords": [
634
+ "here",
635
+ "marker"
636
+ ]
637
+ },
638
+ "lock": {
639
+ "keywords": [
640
+ "secure",
641
+ "safe",
642
+ "protected"
643
+ ]
644
+ },
645
+ "logo-gist": {
646
+ "keywords": [
647
+ "logo",
648
+ "gist"
649
+ ]
650
+ },
651
+ "logo-github": {
652
+ "keywords": [
653
+ "brand"
654
+ ]
655
+ },
656
+ "mail": {
657
+ "keywords": [
658
+ "email",
659
+ "unread"
660
+ ]
661
+ },
662
+ "mail-read": {
663
+ "keywords": [
664
+ "email",
665
+ "open"
666
+ ]
667
+ },
668
+ "mail-reply": {
669
+ "keywords": [
670
+ "email"
671
+ ]
672
+ },
673
+ "mark-github": {
674
+ "keywords": [
675
+ "octocat"
676
+ ]
677
+ },
678
+ "markdown": {
679
+ "keywords": [
680
+ "markup",
681
+ "style"
682
+ ]
683
+ },
684
+ "megaphone": {
685
+ "keywords": [
686
+ "bullhorn",
687
+ "loud",
688
+ "shout",
689
+ "broadcast"
690
+ ]
691
+ },
692
+ "mention": {
693
+ "keywords": [
694
+ "at",
695
+ "ping"
696
+ ]
697
+ },
698
+ "milestone": {
699
+ "keywords": [
700
+ "marker"
701
+ ]
702
+ },
703
+ "mirror": {
704
+ "keywords": [
705
+ "reflect"
706
+ ]
707
+ },
708
+ "mortar-board": {
709
+ "keywords": [
710
+ "education",
711
+ "learn",
712
+ "teach"
713
+ ]
714
+ },
715
+ "mute": {
716
+ "keywords": [
717
+ "quiet",
718
+ "sound",
719
+ "audio",
720
+ "turn",
721
+ "off"
722
+ ]
723
+ },
724
+ "no-newline": {
725
+ "keywords": [
726
+ "return"
727
+ ]
728
+ },
729
+ "octoface": {
730
+ "keywords": [
731
+ "octocat"
732
+ ]
733
+ },
734
+ "organization": {
735
+ "keywords": [
736
+ "people",
737
+ "group",
738
+ "team"
739
+ ]
740
+ },
741
+ "package": {
742
+ "keywords": [
743
+ "box",
744
+ "ship"
745
+ ]
746
+ },
747
+ "paintcan": {
748
+ "keywords": [
749
+ "style",
750
+ "theme",
751
+ "art",
752
+ "color"
753
+ ]
754
+ },
755
+ "pencil": {
756
+ "keywords": [
757
+ "edit",
758
+ "change",
759
+ "update",
760
+ "write"
761
+ ]
762
+ },
763
+ "person": {
764
+ "keywords": [
765
+ "people",
766
+ "man",
767
+ "woman",
768
+ "human"
769
+ ]
770
+ },
771
+ "pin": {
772
+ "keywords": [
773
+ "people",
774
+ "save",
775
+ "star",
776
+ "bookmark"
777
+ ]
778
+ },
779
+ "plug": {
780
+ "keywords": [
781
+ "hook",
782
+ "webhook"
783
+ ]
784
+ },
785
+ "plus": {
786
+ "keywords": [
787
+ "add",
788
+ "new",
789
+ "more"
790
+ ]
791
+ },
792
+ "plus-small": {
793
+ "keywords": [
794
+ "add",
795
+ "new",
796
+ "more",
797
+ "small"
798
+ ]
799
+ },
800
+ "primitive-dot": {
801
+ "keywords": [
802
+ "circle"
803
+ ]
804
+ },
805
+ "primitive-square": {
806
+ "keywords": [
807
+ "box"
808
+ ]
809
+ },
810
+ "pulse": {
811
+ "keywords": [
812
+ "graph",
813
+ "trend",
814
+ "line"
815
+ ]
816
+ },
817
+ "question": {
818
+ "keywords": [
819
+ "help",
820
+ "explain"
821
+ ]
822
+ },
823
+ "quote": {
824
+ "keywords": [
825
+ "quotation"
826
+ ]
827
+ },
828
+ "radio-tower": {
829
+ "keywords": [
830
+ "broadcast"
831
+ ]
832
+ },
833
+ "repo": {
834
+ "keywords": [
835
+ "book",
836
+ "journal"
837
+ ]
838
+ },
839
+ "repo-clone": {
840
+ "keywords": [
841
+ "book",
842
+ "journal"
843
+ ]
844
+ },
845
+ "repo-force-push": {
846
+ "keywords": [
847
+ "book",
848
+ "journal",
849
+ "put"
850
+ ]
851
+ },
852
+ "repo-forked": {
853
+ "keywords": [
854
+ "book",
855
+ "journal",
856
+ "copy"
857
+ ]
858
+ },
859
+ "repo-pull": {
860
+ "keywords": [
861
+ "book",
862
+ "journal",
863
+ "get"
864
+ ]
865
+ },
866
+ "repo-push": {
867
+ "keywords": [
868
+ "book",
869
+ "journal",
870
+ "put"
871
+ ]
872
+ },
873
+ "rocket": {
874
+ "keywords": [
875
+ "staff",
876
+ "stafftools",
877
+ "blast",
878
+ "off",
879
+ "space"
880
+ ]
881
+ },
882
+ "rss": {
883
+ "keywords": [
884
+ "broadcast",
885
+ "feed"
886
+ ]
887
+ },
888
+ "ruby": {
889
+ "keywords": [
890
+ "code"
891
+ ]
892
+ },
893
+ "search": {
894
+ "keywords": [
895
+ "magnifying",
896
+ "glass"
897
+ ]
898
+ },
899
+ "server": {
900
+ "keywords": [
901
+ "computers",
902
+ "racks",
903
+ "ops"
904
+ ]
905
+ },
906
+ "settings": {
907
+ "keywords": [
908
+ "sliders",
909
+ "filters"
910
+ ]
911
+ },
912
+ "shield": {
913
+ "keywords": [
914
+ "protect",
915
+ "shield",
916
+ "lock"
917
+ ]
918
+ },
919
+ "sign-in": {
920
+ "keywords": [
921
+ "door",
922
+ "arrow",
923
+ "direction",
924
+ "enter"
925
+ ]
926
+ },
927
+ "sign-out": {
928
+ "keywords": [
929
+ "door",
930
+ "arrow",
931
+ "direction",
932
+ "leave"
933
+ ]
934
+ },
935
+ "smiley": {
936
+ "keywords": [
937
+ "emoji",
938
+ "smile",
939
+ "mood",
940
+ "emotion"
941
+ ]
942
+ },
943
+ "squirrel": {
944
+ "keywords": [
945
+ "ship",
946
+ "shipit"
947
+ ]
948
+ },
949
+ "star": {
950
+ "keywords": [
951
+ "save",
952
+ "remember",
953
+ "like"
954
+ ]
955
+ },
956
+ "stop": {
957
+ "keywords": [
958
+ "block",
959
+ "spam"
960
+ ]
961
+ },
962
+ "sync": {
963
+ "keywords": [
964
+ "cycle",
965
+ "refresh",
966
+ "loop"
967
+ ]
968
+ },
969
+ "tag": {
970
+ "keywords": [
971
+ "release"
972
+ ]
973
+ },
974
+ "tasklist": {
975
+ "keywords": [
976
+ "todo"
977
+ ]
978
+ },
979
+ "telescope": {
980
+ "keywords": [
981
+ "science",
982
+ "space",
983
+ "look",
984
+ "view",
985
+ "explore"
986
+ ]
987
+ },
988
+ "terminal": {
989
+ "keywords": [
990
+ "code",
991
+ "ops",
992
+ "shell"
993
+ ]
994
+ },
995
+ "text-size": {
996
+ "keywords": [
997
+ "font",
998
+ "size",
999
+ "text"
1000
+ ]
1001
+ },
1002
+ "three-bars": {
1003
+ "keywords": [
1004
+ "hamburger"
1005
+ ]
1006
+ },
1007
+ "thumbsdown": {
1008
+ "keywords": [
1009
+ "thumb",
1010
+ "thumbsdown",
1011
+ "rejected"
1012
+ ]
1013
+ },
1014
+ "thumbsup": {
1015
+ "keywords": [
1016
+ "thumb",
1017
+ "thumbsup",
1018
+ "prop",
1019
+ "ship"
1020
+ ]
1021
+ },
1022
+ "tools": {
1023
+ "keywords": [
1024
+ "screwdriver",
1025
+ "wrench",
1026
+ "settings"
1027
+ ]
1028
+ },
1029
+ "trashcan": {
1030
+ "keywords": [
1031
+ "garbage",
1032
+ "rubbish",
1033
+ "recycle",
1034
+ "delete"
1035
+ ]
1036
+ },
1037
+ "triangle-down": {
1038
+ "keywords": [
1039
+ "arrow",
1040
+ "point",
1041
+ "direction"
1042
+ ]
1043
+ },
1044
+ "triangle-left": {
1045
+ "keywords": [
1046
+ "arrow",
1047
+ "point",
1048
+ "direction"
1049
+ ]
1050
+ },
1051
+ "triangle-right": {
1052
+ "keywords": [
1053
+ "arrow",
1054
+ "point",
1055
+ "direction"
1056
+ ]
1057
+ },
1058
+ "triangle-up": {
1059
+ "keywords": [
1060
+ "arrow",
1061
+ "point",
1062
+ "direction"
1063
+ ]
1064
+ },
1065
+ "unfold": {
1066
+ "keywords": [
1067
+ "expand",
1068
+ "open",
1069
+ "reveal"
1070
+ ]
1071
+ },
1072
+ "unmute": {
1073
+ "keywords": [
1074
+ "loud",
1075
+ "volume",
1076
+ "audio",
1077
+ "sound",
1078
+ "play"
1079
+ ]
1080
+ },
1081
+ "unverified": {
1082
+ "keywords": [
1083
+ "insecure",
1084
+ "untrusted"
1085
+ ]
1086
+ },
1087
+ "verified": {
1088
+ "keywords": [
1089
+ "trusted",
1090
+ "secure",
1091
+ "trustworthy"
1092
+ ]
1093
+ },
1094
+ "versions": {
1095
+ "keywords": [
1096
+ "history"
1097
+ ]
1098
+ },
1099
+ "watch": {
1100
+ "keywords": [
1101
+ "wait",
1102
+ "hourglass"
1103
+ ]
1104
+ },
1105
+ "x": {
1106
+ "keywords": [
1107
+ "remove",
1108
+ "close",
1109
+ "delete"
1110
+ ]
1111
+ },
1112
+ "zap": {
1113
+ "keywords": [
1114
+ "electricity",
1115
+ "lightning",
1116
+ "props",
1117
+ "like",
1118
+ "star",
1119
+ "save"
1120
+ ]
1121
+ },
1122
+ "ellipses": {
1123
+ "keywords": [
1124
+ "dot",
1125
+ "more"
1126
+ ]
1127
+ },
1128
+ "file": {
1129
+ "keywords": [
1130
+ "file"
1131
+ ]
1132
+ },
1133
+ "grabber": {
1134
+ "keywords": [
1135
+ "mover",
1136
+ "drap",
1137
+ "drop"
1138
+ ]
1139
+ },
1140
+ "reply": {
1141
+ "keywords": [
1142
+ "reply all",
1143
+ "back"
1144
+ ]
1145
+ }
1146
+ }