mdless 2.1.53 → 2.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/mdless/console.rb +2 -2
- data/lib/mdless/emoji.rb +161 -159
- data/lib/mdless/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aecedf77946da4026d05871557d05cddbe79a2baf7333f2a5b29afe22436e3e3
|
|
4
|
+
data.tar.gz: db52bfc733a516d8a6ef7b408d9d5ba5c9e3bcc831fdaf66aec34286774b61c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c810d87c2b195d36aaa51dcd0ce04e4a22d383272a9241e05a7e299101ae2688143b6cbf2b81a7530466b332f4e46859223b6c69aeaea20e7dbb7dd137cecf3
|
|
7
|
+
data.tar.gz: 90f889c776068b06c90ab006934fb4b34594a9deb7ea4cae0e81e0947514d66a5893f43a648aebdc6ea116b20413188ecfdb9e408f2605d88ed24960135645a4
|
data/lib/mdless/console.rb
CHANGED
|
@@ -24,7 +24,7 @@ module Redcarpet
|
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
def xc
|
|
27
|
-
x + color(
|
|
27
|
+
x + color('text')
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def x
|
|
@@ -899,7 +899,7 @@ module Redcarpet
|
|
|
899
899
|
end
|
|
900
900
|
|
|
901
901
|
# emojis
|
|
902
|
-
input.gsub!(/(?<=\s|\A):(?<emoji
|
|
902
|
+
input.gsub!(/(?<=\s|\A):(?<emoji>\S+):/) do
|
|
903
903
|
m = Regexp.last_match
|
|
904
904
|
emoji = CLIMarkdown::Emoji.convert_emoji(m['emoji'])
|
|
905
905
|
"#{emoji}#{xc}"
|
data/lib/mdless/emoji.rb
CHANGED
|
@@ -3,30 +3,30 @@
|
|
|
3
3
|
module CLIMarkdown
|
|
4
4
|
module Emoji
|
|
5
5
|
EMOJI = {
|
|
6
|
-
'
|
|
7
|
-
'
|
|
8
|
-
'
|
|
9
|
-
'
|
|
10
|
-
'
|
|
11
|
-
'
|
|
12
|
-
'
|
|
13
|
-
'
|
|
14
|
-
'
|
|
15
|
-
'
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
20
|
-
'
|
|
21
|
-
'
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
'
|
|
6
|
+
'woman_girl_girl_woman' => '👩👩👧👧',
|
|
7
|
+
'woman_girl_boy_woman' => '👩👩👧👦',
|
|
8
|
+
'woman_boy_boy_woman' => '👩👩👦👦',
|
|
9
|
+
'woman_girl_girl_man' => '👨👩👧👧',
|
|
10
|
+
'woman_girl_boy_man' => '👨👩👧👦',
|
|
11
|
+
'woman_boy_boy_man' => '👨👩👦👦',
|
|
12
|
+
'man_girl_girl_man' => '👨👨👧👧',
|
|
13
|
+
'man_girl_boy_man' => '👨👨👧👦',
|
|
14
|
+
'man_boy_boy_man' => '👨👨👦👦',
|
|
15
|
+
'woman_girl_woman' => '👩👩👧',
|
|
16
|
+
'woman_boy_woman' => '👩👩👦',
|
|
17
|
+
'girl_girl_woman' => '👩👧👧',
|
|
18
|
+
'girl_boy_woman' => '👩👧👦',
|
|
19
|
+
'boy_boy_woman' => '👩👦👦',
|
|
20
|
+
'woman_girl_man' => '👨👩👧',
|
|
21
|
+
'man_girl_man' => '👨👨👧',
|
|
22
|
+
'man_boy_man' => '👨👨👦',
|
|
23
|
+
'girl_girl_man' => '👨👧👧',
|
|
24
|
+
'girl_boy_man' => '👨👧👦',
|
|
25
|
+
'boy_boy_man' => '👨👦👦',
|
|
26
|
+
'girl_woman' => '👩👧',
|
|
27
|
+
'boy_woman' => '👩👦',
|
|
28
|
+
'girl_man' => '👨👧',
|
|
29
|
+
'boy_man' => '👨👦',
|
|
30
30
|
'joy' => '😂',
|
|
31
31
|
'heart' => '❤️',
|
|
32
32
|
'heart_suit' => '♥️',
|
|
@@ -45,6 +45,7 @@ module CLIMarkdown
|
|
|
45
45
|
'recycle' => '♻',
|
|
46
46
|
'wink' => '😉',
|
|
47
47
|
'thumbsup' => '👍',
|
|
48
|
+
'+1' => '👍',
|
|
48
49
|
'pray' => '🙏',
|
|
49
50
|
'relieved' => '😌',
|
|
50
51
|
'notes' => '🎶',
|
|
@@ -66,7 +67,7 @@ module CLIMarkdown
|
|
|
66
67
|
'sparkling_heart' => '💖',
|
|
67
68
|
'blue_heart' => '💙',
|
|
68
69
|
'confused' => '😕',
|
|
69
|
-
'
|
|
70
|
+
'tipping_hand_man' => '💁♂',
|
|
70
71
|
'information_desk_person' => '💁',
|
|
71
72
|
'stuck_out_tongue_winking_eye' => '😜',
|
|
72
73
|
'disappointed' => '😞',
|
|
@@ -127,9 +128,10 @@ module CLIMarkdown
|
|
|
127
128
|
'grimacing' => '😬',
|
|
128
129
|
'star2' => '🌟',
|
|
129
130
|
'gun' => '🔫',
|
|
130
|
-
'
|
|
131
|
+
'raising_hand_man' => '🙋♂',
|
|
131
132
|
'raising_hand' => '🙋',
|
|
132
133
|
'thumbsdown' => '👎',
|
|
134
|
+
'-1' => '👎',
|
|
133
135
|
'dancer' => '💃',
|
|
134
136
|
'musical_note' => '🎵',
|
|
135
137
|
'no_mouth' => '😶',
|
|
@@ -137,7 +139,7 @@ module CLIMarkdown
|
|
|
137
139
|
'fist' => '✊',
|
|
138
140
|
'point_down' => '👇',
|
|
139
141
|
'red_circle' => '🔴',
|
|
140
|
-
'
|
|
142
|
+
'gesturing_NO_man' => '🙅♂',
|
|
141
143
|
'no_good' => '🙅',
|
|
142
144
|
'boom' => '💥',
|
|
143
145
|
'thought_balloon' => '💭',
|
|
@@ -145,7 +147,7 @@ module CLIMarkdown
|
|
|
145
147
|
'poop' => '💩',
|
|
146
148
|
'cold_sweat' => '😰',
|
|
147
149
|
'gem' => '💎',
|
|
148
|
-
'
|
|
150
|
+
'gesturing_OK_man' => '🙆♂',
|
|
149
151
|
'ok_woman' => '🙆',
|
|
150
152
|
'pizza' => '🍕',
|
|
151
153
|
'joy_cat' => '😹',
|
|
@@ -154,7 +156,7 @@ module CLIMarkdown
|
|
|
154
156
|
'sweat_drops' => '💦',
|
|
155
157
|
'penguin' => '🐧',
|
|
156
158
|
'zzz' => '💤',
|
|
157
|
-
'
|
|
159
|
+
'walking_woman' => '🚶♀',
|
|
158
160
|
'walking' => '🚶',
|
|
159
161
|
'balloon' => '🎈',
|
|
160
162
|
'star' => '⭐',
|
|
@@ -173,7 +175,7 @@ module CLIMarkdown
|
|
|
173
175
|
'nail_care' => '💅',
|
|
174
176
|
'x' => '❌',
|
|
175
177
|
'alien' => '👽',
|
|
176
|
-
'
|
|
178
|
+
'bowing_woman' => '🙇♀',
|
|
177
179
|
'bow' => '🙇',
|
|
178
180
|
'cloud' => '☁',
|
|
179
181
|
'soccer' => '⚽',
|
|
@@ -196,7 +198,7 @@ module CLIMarkdown
|
|
|
196
198
|
'zap' => '⚡',
|
|
197
199
|
'club_suit' => '♣️',
|
|
198
200
|
'heavy_multiplication_x' => '✖️',
|
|
199
|
-
'
|
|
201
|
+
'running_woman' => '🏃♀',
|
|
200
202
|
'runner' => '🏃',
|
|
201
203
|
'sunflower' => '🌻',
|
|
202
204
|
'earth_americas' => '🌎',
|
|
@@ -228,11 +230,11 @@ module CLIMarkdown
|
|
|
228
230
|
'hotsprings' => '♨️',
|
|
229
231
|
'maple_leaf' => '🍁',
|
|
230
232
|
'princess' => '👸',
|
|
231
|
-
'
|
|
233
|
+
'getting_massage_man' => '💆♂',
|
|
232
234
|
'massage' => '💆',
|
|
233
235
|
'love_letter' => '💌',
|
|
234
236
|
'trophy' => '🏆',
|
|
235
|
-
'
|
|
237
|
+
'frowning_man' => '🙍♂',
|
|
236
238
|
'person_frowning' => '🙍',
|
|
237
239
|
'us' => '🇺🇸',
|
|
238
240
|
'confetti_ball' => '🎊',
|
|
@@ -252,7 +254,7 @@ module CLIMarkdown
|
|
|
252
254
|
'couple_woman_kiss' => '👩❤️💋👩',
|
|
253
255
|
'couple_man_kiss' => '👨❤️💋👨',
|
|
254
256
|
'couple_with_heart' => '💑',
|
|
255
|
-
'
|
|
257
|
+
'man_love_man' => '👨❤️👨',
|
|
256
258
|
'lollipop' => '🍭',
|
|
257
259
|
'clapper' => '🎬',
|
|
258
260
|
'pig' => '🐷',
|
|
@@ -343,7 +345,7 @@ module CLIMarkdown
|
|
|
343
345
|
'monkey' => '🐒',
|
|
344
346
|
'books' => '📚',
|
|
345
347
|
'japanese_ogre' => '👹',
|
|
346
|
-
'
|
|
348
|
+
'guard_woman' => '💂♀',
|
|
347
349
|
'guardsman' => '💂',
|
|
348
350
|
'loudspeaker' => '📢',
|
|
349
351
|
'scissors' => '✂️',
|
|
@@ -360,7 +362,7 @@ module CLIMarkdown
|
|
|
360
362
|
'left_luggage' => '🛅',
|
|
361
363
|
'high_heel' => '👠',
|
|
362
364
|
'dart' => '🎯',
|
|
363
|
-
'
|
|
365
|
+
'swimming_woman' => '🏊♀',
|
|
364
366
|
'swimmer' => '🏊',
|
|
365
367
|
'key' => '🔑',
|
|
366
368
|
'bikini' => '👙',
|
|
@@ -375,7 +377,7 @@ module CLIMarkdown
|
|
|
375
377
|
'dollar' => '💵',
|
|
376
378
|
'house_with_garden' => '🏡',
|
|
377
379
|
'book' => '📖',
|
|
378
|
-
'
|
|
380
|
+
'getting_haircut_man' => '💇♂',
|
|
379
381
|
'haircut' => '💇',
|
|
380
382
|
'computer' => '💻',
|
|
381
383
|
'bulb' => '💡',
|
|
@@ -383,7 +385,7 @@ module CLIMarkdown
|
|
|
383
385
|
'back' => '🔙',
|
|
384
386
|
'boy' => '👦',
|
|
385
387
|
'closed_lock_with_key' => '🔐',
|
|
386
|
-
'
|
|
388
|
+
'pouting_man' => '🙎♂',
|
|
387
389
|
'person_with_pouting_face' => '🙎',
|
|
388
390
|
'tangerine' => '🍊',
|
|
389
391
|
'leftright_arrow' => '↔️',
|
|
@@ -429,8 +431,8 @@ module CLIMarkdown
|
|
|
429
431
|
'nose' => '👃',
|
|
430
432
|
'pig_nose' => '🐽',
|
|
431
433
|
'fish' => '🐟',
|
|
432
|
-
'
|
|
433
|
-
'
|
|
434
|
+
'wearing_turban_woman' => '👳♀',
|
|
435
|
+
'with_turban_man' => '👳',
|
|
434
436
|
'koala' => '🐨',
|
|
435
437
|
'ear' => '👂',
|
|
436
438
|
'eight_spoked_asterisk' => '✳️',
|
|
@@ -473,7 +475,7 @@ module CLIMarkdown
|
|
|
473
475
|
'dragon' => '🐉',
|
|
474
476
|
'hamster' => '🐹',
|
|
475
477
|
'golf' => '⛳',
|
|
476
|
-
'
|
|
478
|
+
'surfing_woman' => '🏄♀',
|
|
477
479
|
'surfer' => '🏄',
|
|
478
480
|
'mouse' => '🐭',
|
|
479
481
|
'waxing_crescent_moon' => '🌒',
|
|
@@ -486,7 +488,7 @@ module CLIMarkdown
|
|
|
486
488
|
'cancer' => '♋',
|
|
487
489
|
'trident' => '🔱',
|
|
488
490
|
'bread' => '🍞',
|
|
489
|
-
'
|
|
491
|
+
'police_officer_woman' => '👮♀',
|
|
490
492
|
'cop' => '👮',
|
|
491
493
|
'tea' => '🍵',
|
|
492
494
|
'fishing_pole_and_fish' => '🎣',
|
|
@@ -527,7 +529,7 @@ module CLIMarkdown
|
|
|
527
529
|
'small_red_triangle' => '🔺',
|
|
528
530
|
'high_brightness' => '🔆',
|
|
529
531
|
'heavy_plus_sign' => '➕',
|
|
530
|
-
'
|
|
532
|
+
'with_gua_pi_mao_man' => '👲',
|
|
531
533
|
'convenience_store' => '🏪',
|
|
532
534
|
'busts_in_silhouette' => '👥',
|
|
533
535
|
'beetle' => '🐞',
|
|
@@ -603,13 +605,13 @@ module CLIMarkdown
|
|
|
603
605
|
'closed_umbrella' => '🌂',
|
|
604
606
|
'saxophone' => '🎷',
|
|
605
607
|
'church' => '⛪',
|
|
606
|
-
'
|
|
608
|
+
'biking_woman' => '🚴♀',
|
|
607
609
|
'bicyclist' => '🚴',
|
|
608
610
|
'pisces' => '♓',
|
|
609
611
|
'dango' => '🍡',
|
|
610
612
|
'capricorn' => '♑',
|
|
611
613
|
'office' => '🏢',
|
|
612
|
-
'
|
|
614
|
+
'rowing_boat_woman' => '🚣♀',
|
|
613
615
|
'rowboat' => '🚣',
|
|
614
616
|
'womans_hat' => '👒',
|
|
615
617
|
'mans_shoe' => '👞',
|
|
@@ -623,7 +625,7 @@ module CLIMarkdown
|
|
|
623
625
|
'school' => '🏫',
|
|
624
626
|
'cow2' => '🐄',
|
|
625
627
|
'cityscape_at_dusk' => '🌆',
|
|
626
|
-
'
|
|
628
|
+
'construction_worker_woman' => '👷♀',
|
|
627
629
|
'construction_worker' => '👷',
|
|
628
630
|
'toilet' => '🚽',
|
|
629
631
|
'pig2' => '🐖',
|
|
@@ -790,7 +792,7 @@ module CLIMarkdown
|
|
|
790
792
|
'clock8' => '🕗',
|
|
791
793
|
'u7a7a' => '🈳',
|
|
792
794
|
'traffic_light' => '🚥',
|
|
793
|
-
'
|
|
795
|
+
'mountain_biking_woman' => '🚵♀',
|
|
794
796
|
'mountain_bicyclist' => '🚵',
|
|
795
797
|
'microscope' => '🔬',
|
|
796
798
|
'japanese_castle' => '🏯',
|
|
@@ -877,7 +879,7 @@ module CLIMarkdown
|
|
|
877
879
|
'baggage_claim' => '🛄',
|
|
878
880
|
'no_bicycles' => '🚳',
|
|
879
881
|
'rainbow_flag' => '🏳🌈',
|
|
880
|
-
'
|
|
882
|
+
'detective_woman' => '🕵♀',
|
|
881
883
|
'detective' => '🕵',
|
|
882
884
|
'frowning_face' => '☹',
|
|
883
885
|
'skull_crossbones' => '☠',
|
|
@@ -918,10 +920,10 @@ module CLIMarkdown
|
|
|
918
920
|
'basketballer_woman_mt' => '⛹🏽♀',
|
|
919
921
|
'basketballer_woman_mlt' => '⛹🏼♀',
|
|
920
922
|
'basketballer_woman_lt' => '⛹🏻♀',
|
|
921
|
-
'
|
|
923
|
+
'bouncing_ball_woman' => '⛹♀',
|
|
922
924
|
'basketballer_lt' => '⛹🏻',
|
|
923
925
|
'basketballer' => '⛹',
|
|
924
|
-
'
|
|
926
|
+
'in_suit_man' => '🕴',
|
|
925
927
|
'golfer' => '🏌',
|
|
926
928
|
'golfer_woman' => '🏌♀',
|
|
927
929
|
'*' => '*️⃣',
|
|
@@ -1425,176 +1427,176 @@ module CLIMarkdown
|
|
|
1425
1427
|
# 'bald' => '👩🦲',
|
|
1426
1428
|
# 'bald' => '🧑🦲',
|
|
1427
1429
|
'older_person' => '🧓',
|
|
1428
|
-
'
|
|
1429
|
-
'
|
|
1430
|
-
'
|
|
1431
|
-
'
|
|
1432
|
-
'
|
|
1433
|
-
'
|
|
1430
|
+
'frowning_woman' => '🙍♀',
|
|
1431
|
+
'pouting_woman' => '🙎♀',
|
|
1432
|
+
'gesturing_NO_woman' => '🙅♀',
|
|
1433
|
+
'gesturing_OK_woman' => '🙆♀',
|
|
1434
|
+
'tipping_hand_woman' => '💁♀',
|
|
1435
|
+
'raising_hand_woman' => '🙋♀',
|
|
1434
1436
|
'deaf_person' => '🧏',
|
|
1435
1437
|
'deaf_man' => '🧏♂',
|
|
1436
1438
|
'deaf_woman' => '🧏♀',
|
|
1437
|
-
'
|
|
1439
|
+
'bowing_man' => '🙇♂',
|
|
1438
1440
|
'person_facepalming' => '🤦',
|
|
1439
|
-
'
|
|
1440
|
-
'
|
|
1441
|
+
'facepalming_man' => '🤦♂',
|
|
1442
|
+
'facepalming_woman' => '🤦♀',
|
|
1441
1443
|
'person_shrugging' => '🤷',
|
|
1442
|
-
'
|
|
1443
|
-
'
|
|
1444
|
+
'shrugging_man' => '🤷♂',
|
|
1445
|
+
'shrugging_woman' => '🤷♀',
|
|
1444
1446
|
'health_worker' => '🧑⚕',
|
|
1445
|
-
'
|
|
1446
|
-
'
|
|
1447
|
+
'health_worker_man' => '👨⚕',
|
|
1448
|
+
'health_worker_woman' => '👩⚕',
|
|
1447
1449
|
'student' => '🧑🎓',
|
|
1448
|
-
'
|
|
1449
|
-
'
|
|
1450
|
+
'student_man' => '👨🎓',
|
|
1451
|
+
'student_woman' => '👩🎓',
|
|
1450
1452
|
'teacher' => '🧑🏫',
|
|
1451
|
-
'
|
|
1452
|
-
'
|
|
1453
|
+
'teacher_man' => '👨🏫',
|
|
1454
|
+
'teacher_woman' => '👩🏫',
|
|
1453
1455
|
'judge' => '🧑⚖',
|
|
1454
|
-
'
|
|
1455
|
-
'
|
|
1456
|
+
'judge_man' => '👨⚖',
|
|
1457
|
+
'judge_woman' => '👩⚖',
|
|
1456
1458
|
'farmer' => '🧑🌾',
|
|
1457
|
-
'
|
|
1458
|
-
'
|
|
1459
|
+
'farmer_man' => '👨🌾',
|
|
1460
|
+
'farmer_woman' => '👩🌾',
|
|
1459
1461
|
'cook' => '🧑🍳',
|
|
1460
|
-
'
|
|
1461
|
-
'
|
|
1462
|
+
'cook_man' => '👨🍳',
|
|
1463
|
+
'cook_woman' => '👩🍳',
|
|
1462
1464
|
'mechanic' => '🧑🔧',
|
|
1463
|
-
'
|
|
1464
|
-
'
|
|
1465
|
+
'mechanic_man' => '👨🔧',
|
|
1466
|
+
'mechanic_woman' => '👩🔧',
|
|
1465
1467
|
'factory_worker' => '🧑🏭',
|
|
1466
|
-
'
|
|
1467
|
-
'
|
|
1468
|
+
'factory_worker_man' => '👨🏭',
|
|
1469
|
+
'factory_worker_woman' => '👩🏭',
|
|
1468
1470
|
'office_worker' => '🧑💼',
|
|
1469
|
-
'
|
|
1470
|
-
'
|
|
1471
|
+
'office_worker_man' => '👨💼',
|
|
1472
|
+
'office_worker_woman' => '👩💼',
|
|
1471
1473
|
'scientist' => '🧑🔬',
|
|
1472
|
-
'
|
|
1473
|
-
'
|
|
1474
|
+
'scientist_man' => '👨🔬',
|
|
1475
|
+
'scientist_woman' => '👩🔬',
|
|
1474
1476
|
'technologist' => '🧑💻',
|
|
1475
|
-
'
|
|
1476
|
-
'
|
|
1477
|
+
'technologist_man' => '👨💻',
|
|
1478
|
+
'technologist_woman' => '👩💻',
|
|
1477
1479
|
'singer' => '🧑🎤',
|
|
1478
|
-
'
|
|
1479
|
-
'
|
|
1480
|
+
'singer_man' => '👨🎤',
|
|
1481
|
+
'singer_woman' => '👩🎤',
|
|
1480
1482
|
'artist' => '🧑🎨',
|
|
1481
|
-
'
|
|
1482
|
-
'
|
|
1483
|
+
'artist_man' => '👨🎨',
|
|
1484
|
+
'artist_woman' => '👩🎨',
|
|
1483
1485
|
'pilot' => '🧑✈',
|
|
1484
|
-
'
|
|
1485
|
-
'
|
|
1486
|
+
'pilot_man' => '👨✈',
|
|
1487
|
+
'pilot_woman' => '👩✈',
|
|
1486
1488
|
'astronaut' => '🧑🚀',
|
|
1487
|
-
'
|
|
1488
|
-
'
|
|
1489
|
+
'astronaut_man' => '👨🚀',
|
|
1490
|
+
'astronaut_woman' => '👩🚀',
|
|
1489
1491
|
'firefighter' => '🧑🚒',
|
|
1490
|
-
'
|
|
1491
|
-
'
|
|
1492
|
-
'
|
|
1493
|
-
'
|
|
1494
|
-
'
|
|
1495
|
-
'
|
|
1492
|
+
'firefighter_man' => '👨🚒',
|
|
1493
|
+
'firefighter_woman' => '👩🚒',
|
|
1494
|
+
'police_officer_man' => '👮♂',
|
|
1495
|
+
'detective_man' => '🕵♂',
|
|
1496
|
+
'guard_man' => '💂♂',
|
|
1497
|
+
'construction_worker_man' => '👷♂',
|
|
1496
1498
|
'prince' => '🤴',
|
|
1497
|
-
'
|
|
1498
|
-
'
|
|
1499
|
-
'
|
|
1499
|
+
'wearing_turban_man' => '👳♂',
|
|
1500
|
+
'with_headscarf_woman' => '🧕',
|
|
1501
|
+
'in_tuxedo_man' => '🤵',
|
|
1500
1502
|
'pregnant_woman' => '🤰',
|
|
1501
1503
|
'breastfeeding' => '🤱',
|
|
1502
1504
|
'Mrs_Claus' => '🤶',
|
|
1503
1505
|
'superhero' => '🦸',
|
|
1504
|
-
'
|
|
1505
|
-
'
|
|
1506
|
+
'superhero_man' => '🦸♂',
|
|
1507
|
+
'superhero_woman' => '🦸♀',
|
|
1506
1508
|
'supervillain' => '🦹',
|
|
1507
|
-
'
|
|
1508
|
-
'
|
|
1509
|
+
'supervillain_man' => '🦹♂',
|
|
1510
|
+
'supervillain_woman' => '🦹♀',
|
|
1509
1511
|
'mage' => '🧙',
|
|
1510
|
-
'
|
|
1511
|
-
'
|
|
1512
|
+
'mage_man' => '🧙♂',
|
|
1513
|
+
'mage_woman' => '🧙♀',
|
|
1512
1514
|
'fairy' => '🧚',
|
|
1513
|
-
'
|
|
1514
|
-
'
|
|
1515
|
+
'fairy_man' => '🧚♂',
|
|
1516
|
+
'fairy_woman' => '🧚♀',
|
|
1515
1517
|
'vampire' => '🧛',
|
|
1516
|
-
'
|
|
1517
|
-
'
|
|
1518
|
+
'vampire_man' => '🧛♂',
|
|
1519
|
+
'vampire_woman' => '🧛♀',
|
|
1518
1520
|
'merperson' => '🧜',
|
|
1519
1521
|
'merman' => '🧜♂',
|
|
1520
1522
|
'mermaid' => '🧜♀',
|
|
1521
1523
|
'elf' => '🧝',
|
|
1522
|
-
'
|
|
1523
|
-
'
|
|
1524
|
+
'elf_man' => '🧝♂',
|
|
1525
|
+
'elf_woman' => '🧝♀',
|
|
1524
1526
|
'genie' => '🧞',
|
|
1525
|
-
'
|
|
1526
|
-
'
|
|
1527
|
+
'genie_man' => '🧞♂',
|
|
1528
|
+
'genie_woman' => '🧞♀',
|
|
1527
1529
|
'zombie' => '🧟',
|
|
1528
|
-
'
|
|
1529
|
-
'
|
|
1530
|
-
'
|
|
1531
|
-
'
|
|
1532
|
-
'
|
|
1530
|
+
'zombie_man' => '🧟♂',
|
|
1531
|
+
'zombie_woman' => '🧟♀',
|
|
1532
|
+
'getting_massage_woman' => '💆♀',
|
|
1533
|
+
'getting_haircut_woman' => '💇♀',
|
|
1534
|
+
'walking_man' => '🚶♂',
|
|
1533
1535
|
'person_standing' => '🧍',
|
|
1534
|
-
'
|
|
1535
|
-
'
|
|
1536
|
+
'standing_man' => '🧍♂',
|
|
1537
|
+
'standing_woman' => '🧍♀',
|
|
1536
1538
|
'person_kneeling' => '🧎',
|
|
1537
|
-
'
|
|
1538
|
-
'
|
|
1539
|
+
'kneeling_man' => '🧎♂',
|
|
1540
|
+
'kneeling_woman' => '🧎♀',
|
|
1539
1541
|
'person_with_probing_cane' => '🧑🦯',
|
|
1540
|
-
'
|
|
1541
|
-
'
|
|
1542
|
+
'with_probing_cane_man' => '👨🦯',
|
|
1543
|
+
'with_probing_cane_woman' => '👩🦯',
|
|
1542
1544
|
'person_in_motorized_wheelchair' => '🧑🦼',
|
|
1543
|
-
'
|
|
1544
|
-
'
|
|
1545
|
+
'in_motorized_wheelchair_man' => '👨🦼',
|
|
1546
|
+
'in_motorized_wheelchair_woman' => '👩🦼',
|
|
1545
1547
|
'person_in_manual_wheelchair' => '🧑🦽',
|
|
1546
|
-
'
|
|
1547
|
-
'
|
|
1548
|
-
'
|
|
1549
|
-
'
|
|
1550
|
-
'
|
|
1548
|
+
'in_manual_wheelchair_man' => '👨🦽',
|
|
1549
|
+
'in_manual_wheelchair_woman' => '👩🦽',
|
|
1550
|
+
'running_man' => '🏃♂',
|
|
1551
|
+
'dancing_man' => '🕺',
|
|
1552
|
+
'in_suit_levitating_man' => '🕴️',
|
|
1551
1553
|
'women_with_bunny_ears' => '👯♀',
|
|
1552
1554
|
'person_in_steamy_room' => '🧖',
|
|
1553
|
-
'
|
|
1554
|
-
'
|
|
1555
|
+
'in_steamy_room_man' => '🧖♂',
|
|
1556
|
+
'in_steamy_room_woman' => '🧖♀',
|
|
1555
1557
|
'person_climbing' => '🧗',
|
|
1556
|
-
'
|
|
1557
|
-
'
|
|
1558
|
+
'climbing_man' => '🧗♂',
|
|
1559
|
+
'climbing_woman' => '🧗♀',
|
|
1558
1560
|
'person_fencing' => '🤺',
|
|
1559
1561
|
'person_golfing' => '🏌️',
|
|
1560
|
-
'
|
|
1561
|
-
'
|
|
1562
|
-
'
|
|
1563
|
-
'
|
|
1564
|
-
'
|
|
1562
|
+
'golfing_man' => '🏌♂',
|
|
1563
|
+
'golfing_woman' => '🏌♀️',
|
|
1564
|
+
'surfing_man' => '🏄♂',
|
|
1565
|
+
'rowing_boat_man' => '🚣♂',
|
|
1566
|
+
'swimming_man' => '🏊♂',
|
|
1565
1567
|
'person_bouncing_ball' => '⛹️',
|
|
1566
|
-
'
|
|
1568
|
+
'bouncing_ball_man' => '⛹♂',
|
|
1567
1569
|
'person_lifting_weights' => '🏋️',
|
|
1568
|
-
'
|
|
1569
|
-
'
|
|
1570
|
-
'
|
|
1571
|
-
'
|
|
1570
|
+
'lifting_weights_man' => '🏋♂',
|
|
1571
|
+
'lifting_weights_woman' => '🏋♀️',
|
|
1572
|
+
'biking_man' => '🚴♂',
|
|
1573
|
+
'mountain_biking_man' => '🚵♂',
|
|
1572
1574
|
'person_cartwheeling' => '🤸',
|
|
1573
|
-
'
|
|
1574
|
-
'
|
|
1575
|
+
'cartwheeling_man' => '🤸♂',
|
|
1576
|
+
'cartwheeling_woman' => '🤸♀',
|
|
1575
1577
|
'people_wrestling' => '🤼',
|
|
1576
1578
|
'men_wrestling' => '🤼♂',
|
|
1577
1579
|
'women_wrestling' => '🤼♀',
|
|
1578
1580
|
'person_playing_water_polo' => '🤽',
|
|
1579
|
-
'
|
|
1580
|
-
'
|
|
1581
|
+
'playing_water_polo_man' => '🤽♂',
|
|
1582
|
+
'playing_water_polo_woman' => '🤽♀',
|
|
1581
1583
|
'person_playing_handball' => '🤾',
|
|
1582
|
-
'
|
|
1583
|
-
'
|
|
1584
|
+
'playing_handball_man' => '🤾♂',
|
|
1585
|
+
'playing_handball_woman' => '🤾♀',
|
|
1584
1586
|
'person_juggling' => '🤹',
|
|
1585
|
-
'
|
|
1586
|
-
'
|
|
1587
|
+
'juggling_man' => '🤹♂',
|
|
1588
|
+
'juggling_woman' => '🤹♀',
|
|
1587
1589
|
'person_in_lotus_position' => '🧘',
|
|
1588
|
-
'
|
|
1589
|
-
'
|
|
1590
|
+
'in_lotus_position_man' => '🧘♂',
|
|
1591
|
+
'in_lotus_position_woman' => '🧘♀',
|
|
1590
1592
|
'people_holding_hands' => '🧑🤝🧑',
|
|
1591
|
-
# '
|
|
1593
|
+
# 'man_woman' => '👩❤💋👨',
|
|
1592
1594
|
# 'man_man' => '👨❤💋👨',
|
|
1593
1595
|
# 'woman_woman' => '👩❤💋👩',
|
|
1594
|
-
'
|
|
1596
|
+
'man_woman' => '👩❤👨',
|
|
1595
1597
|
'man_man' => '👨❤👨',
|
|
1596
1598
|
'woman_woman' => '👩❤👩',
|
|
1597
|
-
'
|
|
1599
|
+
'woman_boy_man' => '👨👩👦',
|
|
1598
1600
|
# 'bald' => '🦲',
|
|
1599
1601
|
'gorilla' => '🦍',
|
|
1600
1602
|
'orangutan' => '🦧',
|
data/lib/mdless/version.rb
CHANGED