tiptapify 0.1.4 → 0.1.6

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.
Files changed (113) hide show
  1. package/dist/tiptapify.css +2 -1
  2. package/dist/tiptapify.mjs +68619 -55059
  3. package/dist/tiptapify.umd.js +90 -80
  4. package/index.d.ts +98 -40
  5. package/package.json +73 -67
  6. package/src/components/Footer.vue +4 -3
  7. package/src/components/MenuBubble.vue +16 -16
  8. package/src/components/MenuFloating.vue +13 -13
  9. package/src/components/Tiptapify.vue +19 -9
  10. package/src/components/Toolbar/Index.vue +21 -17
  11. package/src/components/Toolbar/Items.vue +2 -1
  12. package/src/components/Toolbar/actions.ts +3 -3
  13. package/src/components/Toolbar/alignment.ts +5 -5
  14. package/src/components/Toolbar/format.ts +5 -5
  15. package/src/components/Toolbar/formatExtra.ts +6 -6
  16. package/src/components/Toolbar/items.ts +8 -8
  17. package/src/components/Toolbar/list.ts +6 -6
  18. package/src/components/Toolbar/media.ts +8 -8
  19. package/src/components/Toolbar/misc.ts +8 -8
  20. package/src/components/Toolbar/style.ts +7 -7
  21. package/src/components/UI/TiptapifyDialog.vue +14 -13
  22. package/src/components/editorExtensions.ts +4 -2
  23. package/src/components/index.ts +6 -6
  24. package/src/constants/style.test.ts +49 -0
  25. package/src/constants/style.ts +4 -3
  26. package/src/extensions/PickerEventBus.test.ts +38 -0
  27. package/src/extensions/charmap/arrows.ts +700 -700
  28. package/src/extensions/charmap/box_drawing.ts +184 -184
  29. package/src/extensions/charmap/currency.ts +93 -93
  30. package/src/extensions/charmap/cyrillic.ts +368 -368
  31. package/src/extensions/charmap/diacritics.ts +60 -60
  32. package/src/extensions/charmap/extended_letters.ts +748 -748
  33. package/src/extensions/charmap/greek.ts +252 -252
  34. package/src/extensions/charmap/hebrew.ts +105 -105
  35. package/src/extensions/charmap/math.ts +1684 -1684
  36. package/src/extensions/charmap/punctuation.ts +68 -68
  37. package/src/extensions/charmap/symbols.ts +288 -288
  38. package/src/extensions/charmap/typography.ts +284 -284
  39. package/src/extensions/components/CodeBlockComponent.vue +2 -2
  40. package/src/extensions/components/actions/redo/Button.vue +12 -10
  41. package/src/extensions/components/actions/undo/Button.vue +12 -10
  42. package/src/extensions/components/alignment/center/Button.vue +11 -9
  43. package/src/extensions/components/alignment/justify/Button.vue +11 -9
  44. package/src/extensions/components/alignment/left/Button.vue +11 -9
  45. package/src/extensions/components/alignment/right/Button.vue +11 -9
  46. package/src/extensions/components/format/bold/Button.vue +12 -10
  47. package/src/extensions/components/format/italic/Button.vue +12 -10
  48. package/src/extensions/components/format/strike/Button.vue +12 -10
  49. package/src/extensions/components/format/underline/Button.vue +5 -3
  50. package/src/extensions/components/formatExtra/code/Button.vue +12 -10
  51. package/src/extensions/components/formatExtra/codeBlock/Button.vue +12 -10
  52. package/src/extensions/components/formatExtra/quote/Button.vue +12 -10
  53. package/src/extensions/components/formatExtra/sub/Button.vue +12 -10
  54. package/src/extensions/components/formatExtra/sup/Button.vue +12 -10
  55. package/src/extensions/components/list/bullet/Button.vue +21 -19
  56. package/src/extensions/components/list/bullet/index.ts +1 -1
  57. package/src/extensions/components/list/indent/Button.vue +13 -11
  58. package/src/extensions/components/list/numbered/Button.vue +12 -10
  59. package/src/extensions/components/list/outdent/Button.vue +13 -11
  60. package/src/extensions/components/list/task/Button.vue +12 -10
  61. package/src/extensions/components/media/charmap/Button.vue +8 -5
  62. package/src/extensions/components/media/charmap/Picker.vue +20 -18
  63. package/src/extensions/components/media/emoji/Button.vue +8 -6
  64. package/src/extensions/components/media/emoji/Picker.vue +20 -18
  65. package/src/extensions/components/media/iframe/Button.vue +13 -11
  66. package/src/extensions/components/media/iframe/IframeDialog.vue +27 -25
  67. package/src/extensions/components/media/image/Button.vue +12 -10
  68. package/src/extensions/components/media/image/ImageDialog.vue +46 -42
  69. package/src/extensions/components/media/link/Button.vue +12 -11
  70. package/src/extensions/components/media/link/LinkDialog.vue +39 -37
  71. package/src/extensions/components/media/link/index.ts +6 -7
  72. package/src/extensions/components/media/table/Button.vue +21 -19
  73. package/src/extensions/components/media/table/ColumnActions.vue +5 -4
  74. package/src/extensions/components/media/table/RowActions.vue +5 -4
  75. package/src/extensions/components/media/table/TableBuilder.vue +15 -13
  76. package/src/extensions/components/media/video/Button.vue +12 -10
  77. package/src/extensions/components/media/video/VideoDialog.vue +33 -15
  78. package/src/extensions/components/misc/break/Button.vue +8 -6
  79. package/src/extensions/components/misc/formatClear/Button.vue +12 -10
  80. package/src/extensions/components/misc/fullscreen/Button.vue +20 -18
  81. package/src/extensions/components/misc/invisibleChar/Button.vue +11 -9
  82. package/src/extensions/components/misc/line/Button.vue +11 -9
  83. package/src/extensions/components/misc/preview/Button.vue +11 -9
  84. package/src/extensions/components/misc/source/Button.vue +9 -7
  85. package/src/extensions/components/misc/source/ShowSourceDialog.vue +27 -25
  86. package/src/extensions/components/slashCommands/CommandsList.vue +3 -1
  87. package/src/extensions/components/style/StyleColor.vue +26 -22
  88. package/src/extensions/components/style/color/Button.vue +19 -17
  89. package/src/extensions/components/style/fontFamily/Button.vue +16 -14
  90. package/src/extensions/components/style/fontFamily/FontFamily.vue +3 -2
  91. package/src/extensions/components/style/fontSize/Button.vue +17 -15
  92. package/src/extensions/components/style/fontSize/FontSize.vue +4 -3
  93. package/src/extensions/components/style/heading/Button.vue +19 -16
  94. package/src/extensions/components/style/highlight/Button.vue +19 -17
  95. package/src/extensions/components/style/lineHeight/Button.vue +16 -14
  96. package/src/extensions/components/style/lineHeight/FontFamily.vue +3 -2
  97. package/src/extensions/components/style/lineHeight/LineHeight.vue +3 -2
  98. package/src/extensions/emoji/activities.ts +534 -534
  99. package/src/extensions/emoji/animals_and_nature.ts +978 -978
  100. package/src/extensions/emoji/component.ts +54 -54
  101. package/src/extensions/emoji/flags.ts +1644 -1644
  102. package/src/extensions/emoji/food_and_drink.ts +810 -810
  103. package/src/extensions/emoji/objects.ts +1608 -1608
  104. package/src/extensions/emoji/people_and_body.ts +2022 -2022
  105. package/src/extensions/emoji/smileys_and_emotion.ts +1038 -1038
  106. package/src/extensions/emoji/symbols.ts +1290 -1290
  107. package/src/extensions/emoji/travel_and_places.ts +1332 -1332
  108. package/src/index.ts +15 -5
  109. package/src/types/editor.ts +10 -0
  110. package/src/types/slashCommandsTypes.ts +1 -1
  111. package/src/types/toolbarTypes.ts +3 -1
  112. package/src/utils/helpers.test.ts +32 -0
  113. package/src/utils/helpers.ts +1 -1
@@ -1,1227 +1,1227 @@
1
1
  export default [
2
2
  {
3
- "name": "Left arrow",
4
- "char": "",
5
- "codes": [
6
- "←"
3
+ 'name': 'Left arrow',
4
+ 'char': '',
5
+ 'codes': [
6
+ '←'
7
7
  ]
8
8
  },
9
9
  {
10
- "name": "name",
11
- "char": "",
12
- "codes": [
13
- "↑"
10
+ 'name': 'name',
11
+ 'char': '',
12
+ 'codes': [
13
+ '↑'
14
14
  ]
15
15
  },
16
16
  {
17
- "name": "Short right arrow",
18
- "char": "",
19
- "codes": [
20
- "→"
17
+ 'name': 'Short right arrow',
18
+ 'char': '',
19
+ 'codes': [
20
+ '→'
21
21
  ]
22
22
  },
23
23
  {
24
- "name": "Down arrow",
25
- "char": "",
26
- "codes": [
27
- "↓"
24
+ 'name': 'Down arrow',
25
+ 'char': '',
26
+ 'codes': [
27
+ '↓'
28
28
  ]
29
29
  },
30
30
  {
31
- "name": "Left right arrow",
32
- "char": "",
33
- "codes": [
34
- "↔"
31
+ 'name': 'Left right arrow',
32
+ 'char': '',
33
+ 'codes': [
34
+ '↔'
35
35
  ]
36
36
  },
37
37
  {
38
- "name": "Up down arrow",
39
- "char": "",
40
- "codes": [
41
- "↕"
38
+ 'name': 'Up down arrow',
39
+ 'char': '',
40
+ 'codes': [
41
+ '↕'
42
42
  ]
43
43
  },
44
44
  {
45
- "name": "Upper left arrow",
46
- "char": "",
47
- "codes": [
48
- "↖"
45
+ 'name': 'Upper left arrow',
46
+ 'char': '',
47
+ 'codes': [
48
+ '↖'
49
49
  ]
50
50
  },
51
51
  {
52
- "name": "Upper right arrow",
53
- "char": "",
54
- "codes": [
55
- "↗"
52
+ 'name': 'Upper right arrow',
53
+ 'char': '',
54
+ 'codes': [
55
+ '↗'
56
56
  ]
57
57
  },
58
58
  {
59
- "name": "Lower right arrow",
60
- "char": "",
61
- "codes": [
62
- "↘"
59
+ 'name': 'Lower right arrow',
60
+ 'char': '',
61
+ 'codes': [
62
+ '↘'
63
63
  ]
64
64
  },
65
65
  {
66
- "name": "Lower left arrow",
67
- "char": "",
68
- "codes": [
69
- "↙"
66
+ 'name': 'Lower left arrow',
67
+ 'char': '',
68
+ 'codes': [
69
+ '↙'
70
70
  ]
71
71
  },
72
72
  {
73
- "name": "Left arrow with stroke",
74
- "char": "",
75
- "codes": [
76
- "↚"
73
+ 'name': 'Left arrow with stroke',
74
+ 'char': '',
75
+ 'codes': [
76
+ '↚'
77
77
  ]
78
78
  },
79
79
  {
80
- "name": "Right arrow with stroke",
81
- "char": "",
82
- "codes": [
83
- "↛"
80
+ 'name': 'Right arrow with stroke',
81
+ 'char': '',
82
+ 'codes': [
83
+ '↛'
84
84
  ]
85
85
  },
86
86
  {
87
- "name": "Wavy right arrow",
88
- "char": "",
89
- "codes": [
90
- "↝"
87
+ 'name': 'Wavy right arrow',
88
+ 'char': '',
89
+ 'codes': [
90
+ '↝'
91
91
  ]
92
92
  },
93
93
  {
94
- "name": "Two-head left arrow",
95
- "char": "",
96
- "codes": [
97
- "↞"
94
+ 'name': 'Two-head left arrow',
95
+ 'char': '',
96
+ 'codes': [
97
+ '↞'
98
98
  ]
99
99
  },
100
100
  {
101
- "name": "Two-head up arrow",
102
- "char": "",
103
- "codes": [
104
- "↟"
101
+ 'name': 'Two-head up arrow',
102
+ 'char': '',
103
+ 'codes': [
104
+ '↟'
105
105
  ]
106
106
  },
107
107
  {
108
- "name": "Two-head right arrow",
109
- "char": "",
110
- "codes": [
111
- "↠"
108
+ 'name': 'Two-head right arrow',
109
+ 'char': '',
110
+ 'codes': [
111
+ '↠'
112
112
  ]
113
113
  },
114
114
  {
115
- "name": "Two-head down arrow",
116
- "char": "",
117
- "codes": [
118
- "↡"
115
+ 'name': 'Two-head down arrow',
116
+ 'char': '',
117
+ 'codes': [
118
+ '↡'
119
119
  ]
120
120
  },
121
121
  {
122
- "name": "Left arrow with tail",
123
- "char": "",
124
- "codes": [
125
- "↢"
122
+ 'name': 'Left arrow with tail',
123
+ 'char': '',
124
+ 'codes': [
125
+ '↢'
126
126
  ]
127
127
  },
128
128
  {
129
- "name": "Right arrow with tail",
130
- "char": "",
131
- "codes": [
132
- "↣"
129
+ 'name': 'Right arrow with tail',
130
+ 'char': '',
131
+ 'codes': [
132
+ '↣'
133
133
  ]
134
134
  },
135
135
  {
136
- "name": "Left arrow from bar",
137
- "char": "",
138
- "codes": [
139
- "↤"
136
+ 'name': 'Left arrow from bar',
137
+ 'char': '',
138
+ 'codes': [
139
+ '↤'
140
140
  ]
141
141
  },
142
142
  {
143
- "name": "Up arrow from bar",
144
- "char": "",
145
- "codes": [
146
- "↥"
143
+ 'name': 'Up arrow from bar',
144
+ 'char': '',
145
+ 'codes': [
146
+ '↥'
147
147
  ]
148
148
  },
149
149
  {
150
- "name": "Right arrow from bar",
151
- "char": "",
152
- "codes": [
153
- "↦"
150
+ 'name': 'Right arrow from bar',
151
+ 'char': '',
152
+ 'codes': [
153
+ '↦'
154
154
  ]
155
155
  },
156
156
  {
157
- "name": "Down arrow from bar",
158
- "char": "",
159
- "codes": [
160
- "↧"
157
+ 'name': 'Down arrow from bar',
158
+ 'char': '',
159
+ 'codes': [
160
+ '↧'
161
161
  ]
162
162
  },
163
163
  {
164
- "name": "Turn left",
165
- "char": "",
166
- "codes": [
167
- "↩"
164
+ 'name': 'Turn left',
165
+ 'char': '',
166
+ 'codes': [
167
+ '↩'
168
168
  ]
169
169
  },
170
170
  {
171
- "name": "Turn right",
172
- "char": "",
173
- "codes": [
174
- "↪"
171
+ 'name': 'Turn right',
172
+ 'char': '',
173
+ 'codes': [
174
+ '↪'
175
175
  ]
176
176
  },
177
177
  {
178
- "name": "Loop left",
179
- "char": "",
180
- "codes": [
181
- "↫"
178
+ 'name': 'Loop left',
179
+ 'char': '',
180
+ 'codes': [
181
+ '↫'
182
182
  ]
183
183
  },
184
184
  {
185
- "name": "Loop right",
186
- "char": "",
187
- "codes": [
188
- "↬"
185
+ 'name': 'Loop right',
186
+ 'char': '',
187
+ 'codes': [
188
+ '↬'
189
189
  ]
190
190
  },
191
191
  {
192
- "name": "Left right wave arrow",
193
- "char": "",
194
- "codes": [
195
- "↭"
192
+ 'name': 'Left right wave arrow',
193
+ 'char': '',
194
+ 'codes': [
195
+ '↭'
196
196
  ]
197
197
  },
198
198
  {
199
- "name": "Left right with stroke",
200
- "char": "",
201
- "codes": [
202
- "↮"
199
+ 'name': 'Left right with stroke',
200
+ 'char': '',
201
+ 'codes': [
202
+ '↮'
203
203
  ]
204
204
  },
205
205
  {
206
- "name": "Upward arrow with tip leftwards",
207
- "char": "",
208
- "codes": [
209
- "↰"
206
+ 'name': 'Upward arrow with tip leftwards',
207
+ 'char': '',
208
+ 'codes': [
209
+ '↰'
210
210
  ]
211
211
  },
212
212
  {
213
- "name": "Upward arrow with tip rightwards",
214
- "char": "",
215
- "codes": [
216
- "↱"
213
+ 'name': 'Upward arrow with tip rightwards',
214
+ 'char': '',
215
+ 'codes': [
216
+ '↱'
217
217
  ]
218
218
  },
219
219
  {
220
- "name": "Downward arrow with tip leftwards",
221
- "char": "",
222
- "codes": [
223
- "↲"
220
+ 'name': 'Downward arrow with tip leftwards',
221
+ 'char': '',
222
+ 'codes': [
223
+ '↲'
224
224
  ]
225
225
  },
226
226
  {
227
- "name": "Downward arrow with tip rightwards",
228
- "char": "",
229
- "codes": [
230
- "↳"
227
+ 'name': 'Downward arrow with tip rightwards',
228
+ 'char': '',
229
+ 'codes': [
230
+ '↳'
231
231
  ]
232
232
  },
233
233
  {
234
- "name": "Downward arrow with corner leftwards",
235
- "char": "",
236
- "codes": [
237
- "↵"
234
+ 'name': 'Downward arrow with corner leftwards',
235
+ 'char': '',
236
+ 'codes': [
237
+ '↵'
238
238
  ]
239
239
  },
240
240
  {
241
- "name": "Left curve",
242
- "char": "",
243
- "codes": [
244
- "↶"
241
+ 'name': 'Left curve',
242
+ 'char': '',
243
+ 'codes': [
244
+ '↶'
245
245
  ]
246
246
  },
247
247
  {
248
- "name": "Right curve",
249
- "char": "",
250
- "codes": [
251
- "↷"
248
+ 'name': 'Right curve',
249
+ 'char': '',
250
+ 'codes': [
251
+ '↷'
252
252
  ]
253
253
  },
254
254
  {
255
- "name": "Counter clockwise",
256
- "char": "",
257
- "codes": [
258
- "↺"
255
+ 'name': 'Counter clockwise',
256
+ 'char': '',
257
+ 'codes': [
258
+ '↺'
259
259
  ]
260
260
  },
261
261
  {
262
- "name": "Clockwise",
263
- "char": "",
264
- "codes": [
265
- "↻"
262
+ 'name': 'Clockwise',
263
+ 'char': '',
264
+ 'codes': [
265
+ '↻'
266
266
  ]
267
267
  },
268
268
  {
269
- "name": "Left vector",
270
- "char": "",
271
- "codes": [
272
- "↼"
269
+ 'name': 'Left vector',
270
+ 'char': '',
271
+ 'codes': [
272
+ '↼'
273
273
  ]
274
274
  },
275
275
  {
276
- "name": "Left down vector",
277
- "char": "",
278
- "codes": [
279
- "↽"
276
+ 'name': 'Left down vector',
277
+ 'char': '',
278
+ 'codes': [
279
+ '↽'
280
280
  ]
281
281
  },
282
282
  {
283
- "name": "Up right vector",
284
- "char": "",
285
- "codes": [
286
- "↾"
283
+ 'name': 'Up right vector',
284
+ 'char': '',
285
+ 'codes': [
286
+ '↾'
287
287
  ]
288
288
  },
289
289
  {
290
- "name": "Up left vector",
291
- "char": "",
292
- "codes": [
293
- "↿"
290
+ 'name': 'Up left vector',
291
+ 'char': '',
292
+ 'codes': [
293
+ '↿'
294
294
  ]
295
295
  },
296
296
  {
297
- "name": "Right vector",
298
- "char": "",
299
- "codes": [
300
- "⇀"
297
+ 'name': 'Right vector',
298
+ 'char': '',
299
+ 'codes': [
300
+ '⇀'
301
301
  ]
302
302
  },
303
303
  {
304
- "name": "Right down vector",
305
- "char": "",
306
- "codes": [
307
- "⇁"
304
+ 'name': 'Right down vector',
305
+ 'char': '',
306
+ 'codes': [
307
+ '⇁'
308
308
  ]
309
309
  },
310
310
  {
311
- "name": "Down right vector",
312
- "char": "",
313
- "codes": [
314
- "⇂"
311
+ 'name': 'Down right vector',
312
+ 'char': '',
313
+ 'codes': [
314
+ '⇂'
315
315
  ]
316
316
  },
317
317
  {
318
- "name": "Down left vector",
319
- "char": "",
320
- "codes": [
321
- "⇃"
318
+ 'name': 'Down left vector',
319
+ 'char': '',
320
+ 'codes': [
321
+ '⇃'
322
322
  ]
323
323
  },
324
324
  {
325
- "name": "Right left arrows",
326
- "char": "",
327
- "codes": [
328
- "⇄"
325
+ 'name': 'Right left arrows',
326
+ 'char': '',
327
+ 'codes': [
328
+ '⇄'
329
329
  ]
330
330
  },
331
331
  {
332
- "name": "Up down arrows",
333
- "char": "",
334
- "codes": [
335
- "⇅"
332
+ 'name': 'Up down arrows',
333
+ 'char': '',
334
+ 'codes': [
335
+ '⇅'
336
336
  ]
337
337
  },
338
338
  {
339
- "name": "Left right arrows",
340
- "char": "",
341
- "codes": [
342
- "⇆"
339
+ 'name': 'Left right arrows',
340
+ 'char': '',
341
+ 'codes': [
342
+ '⇆'
343
343
  ]
344
344
  },
345
345
  {
346
- "name": "Double left arrows",
347
- "char": "",
348
- "codes": [
349
- "⇇"
346
+ 'name': 'Double left arrows',
347
+ 'char': '',
348
+ 'codes': [
349
+ '⇇'
350
350
  ]
351
351
  },
352
352
  {
353
- "name": "Double up arrows",
354
- "char": "",
355
- "codes": [
356
- "⇈"
353
+ 'name': 'Double up arrows',
354
+ 'char': '',
355
+ 'codes': [
356
+ '⇈'
357
357
  ]
358
358
  },
359
359
  {
360
- "name": "Double right arrows",
361
- "char": "",
362
- "codes": [
363
- "⇉"
360
+ 'name': 'Double right arrows',
361
+ 'char': '',
362
+ 'codes': [
363
+ '⇉'
364
364
  ]
365
365
  },
366
366
  {
367
- "name": "Double down arrows",
368
- "char": "",
369
- "codes": [
370
- "⇊"
367
+ 'name': 'Double down arrows',
368
+ 'char': '',
369
+ 'codes': [
370
+ '⇊'
371
371
  ]
372
372
  },
373
373
  {
374
- "name": "Reverse equilibrium",
375
- "char": "",
376
- "codes": [
377
- "⇋"
374
+ 'name': 'Reverse equilibrium',
375
+ 'char': '',
376
+ 'codes': [
377
+ '⇋'
378
378
  ]
379
379
  },
380
380
  {
381
- "name": "Equilibrium",
382
- "char": "",
383
- "codes": [
384
- "⇌"
381
+ 'name': 'Equilibrium',
382
+ 'char': '',
383
+ 'codes': [
384
+ '⇌'
385
385
  ]
386
386
  },
387
387
  {
388
- "name": "Left double arrow with stroke",
389
- "char": "",
390
- "codes": [
391
- "⇍"
388
+ 'name': 'Left double arrow with stroke',
389
+ 'char': '',
390
+ 'codes': [
391
+ '⇍'
392
392
  ]
393
393
  },
394
394
  {
395
- "name": "Left right double arrow with stroke",
396
- "char": "",
397
- "codes": [
398
- "⇎"
395
+ 'name': 'Left right double arrow with stroke',
396
+ 'char': '',
397
+ 'codes': [
398
+ '⇎'
399
399
  ]
400
400
  },
401
401
  {
402
- "name": "Right double arrow with stroke",
403
- "char": "",
404
- "codes": [
405
- "⇏"
402
+ 'name': 'Right double arrow with stroke',
403
+ 'char': '',
404
+ 'codes': [
405
+ '⇏'
406
406
  ]
407
407
  },
408
408
  {
409
- "name": "Left double arrow",
410
- "char": "",
411
- "codes": [
412
- "⇐"
409
+ 'name': 'Left double arrow',
410
+ 'char': '',
411
+ 'codes': [
412
+ '⇐'
413
413
  ]
414
414
  },
415
415
  {
416
- "name": "Up double arrow",
417
- "char": "",
418
- "codes": [
419
- "⇑"
416
+ 'name': 'Up double arrow',
417
+ 'char': '',
418
+ 'codes': [
419
+ '⇑'
420
420
  ]
421
421
  },
422
422
  {
423
- "name": "Right double arrow / Implies",
424
- "char": "",
425
- "codes": [
426
- "⇒ "
423
+ 'name': 'Right double arrow / Implies',
424
+ 'char': '',
425
+ 'codes': [
426
+ '⇒ '
427
427
  ]
428
428
  },
429
429
  {
430
- "name": "Down double arrow",
431
- "char": "",
432
- "codes": [
433
- "⇓"
430
+ 'name': 'Down double arrow',
431
+ 'char': '',
432
+ 'codes': [
433
+ '⇓'
434
434
  ]
435
435
  },
436
436
  {
437
- "name": "Left right double arrow",
438
- "char": "",
439
- "codes": [
440
- "⇔"
437
+ 'name': 'Left right double arrow',
438
+ 'char': '',
439
+ 'codes': [
440
+ '⇔'
441
441
  ]
442
442
  },
443
443
  {
444
- "name": "Up down double arrow",
445
- "char": "",
446
- "codes": [
447
- "⇕"
444
+ 'name': 'Up down double arrow',
445
+ 'char': '',
446
+ 'codes': [
447
+ '⇕'
448
448
  ]
449
449
  },
450
450
  {
451
- "name": "Northwest double arrow",
452
- "char": "",
453
- "codes": [
454
- "⇖"
451
+ 'name': 'Northwest double arrow',
452
+ 'char': '',
453
+ 'codes': [
454
+ '⇖'
455
455
  ]
456
456
  },
457
457
  {
458
- "name": "Northeast double arrow",
459
- "char": "",
460
- "codes": [
461
- "⇗"
458
+ 'name': 'Northeast double arrow',
459
+ 'char': '',
460
+ 'codes': [
461
+ '⇗'
462
462
  ]
463
463
  },
464
464
  {
465
- "name": "Southeast double arrow",
466
- "char": "",
467
- "codes": [
468
- "⇘"
465
+ 'name': 'Southeast double arrow',
466
+ 'char': '',
467
+ 'codes': [
468
+ '⇘'
469
469
  ]
470
470
  },
471
471
  {
472
- "name": "Southwest double arrow",
473
- "char": "",
474
- "codes": [
475
- "⇙"
472
+ 'name': 'Southwest double arrow',
473
+ 'char': '',
474
+ 'codes': [
475
+ '⇙'
476
476
  ]
477
477
  },
478
478
  {
479
- "name": "Left triple arrow",
480
- "char": "",
481
- "codes": [
482
- "⇚"
479
+ 'name': 'Left triple arrow',
480
+ 'char': '',
481
+ 'codes': [
482
+ '⇚'
483
483
  ]
484
484
  },
485
485
  {
486
- "name": "Right triple arrow",
487
- "char": "",
488
- "codes": [
489
- "⇛"
486
+ 'name': 'Right triple arrow',
487
+ 'char': '',
488
+ 'codes': [
489
+ '⇛'
490
490
  ]
491
491
  },
492
492
  {
493
- "name": "Right wave arrow",
494
- "char": "",
495
- "codes": [
496
- "⇝"
493
+ 'name': 'Right wave arrow',
494
+ 'char': '',
495
+ 'codes': [
496
+ '⇝'
497
497
  ]
498
498
  },
499
499
  {
500
- "name": "Left arrow to bar",
501
- "char": "",
502
- "codes": [
503
- "⇤"
500
+ 'name': 'Left arrow to bar',
501
+ 'char': '',
502
+ 'codes': [
503
+ '⇤'
504
504
  ]
505
505
  },
506
506
  {
507
- "name": "Right arrow to bar",
508
- "char": "",
509
- "codes": [
510
- "⇥"
507
+ 'name': 'Right arrow to bar',
508
+ 'char': '',
509
+ 'codes': [
510
+ '⇥'
511
511
  ]
512
512
  },
513
513
  {
514
- "name": "Up down arrows",
515
- "char": "",
516
- "codes": [
517
- "⇵"
514
+ 'name': 'Up down arrows',
515
+ 'char': '',
516
+ 'codes': [
517
+ '⇵'
518
518
  ]
519
519
  },
520
520
  {
521
- "name": "Open left arrow",
522
- "char": "",
523
- "codes": [
524
- "⇽"
521
+ 'name': 'Open left arrow',
522
+ 'char': '',
523
+ 'codes': [
524
+ '⇽'
525
525
  ]
526
526
  },
527
527
  {
528
- "name": "Open right arrow",
529
- "char": "",
530
- "codes": [
531
- "⇾"
528
+ 'name': 'Open right arrow',
529
+ 'char': '',
530
+ 'codes': [
531
+ '⇾'
532
532
  ]
533
533
  },
534
534
  {
535
- "name": "Open left right arrow",
536
- "char": "",
537
- "codes": [
538
- "⇿"
535
+ 'name': 'Open left right arrow',
536
+ 'char': '',
537
+ 'codes': [
538
+ '⇿'
539
539
  ]
540
540
  },
541
541
  {
542
- "name": "Left long arrow",
543
- "char": "",
544
- "codes": [
545
- "⟵"
542
+ 'name': 'Left long arrow',
543
+ 'char': '',
544
+ 'codes': [
545
+ '⟵'
546
546
  ]
547
547
  },
548
548
  {
549
- "name": "Right long arrow",
550
- "char": "",
551
- "codes": [
552
- "⟶"
549
+ 'name': 'Right long arrow',
550
+ 'char': '',
551
+ 'codes': [
552
+ '⟶'
553
553
  ]
554
554
  },
555
555
  {
556
- "name": "Left right long arrow",
557
- "char": "",
558
- "codes": [
559
- "⟷"
556
+ 'name': 'Left right long arrow',
557
+ 'char': '',
558
+ 'codes': [
559
+ '⟷'
560
560
  ]
561
561
  },
562
562
  {
563
- "name": "Left double long arrow",
564
- "char": "",
565
- "codes": [
566
- "⟸"
563
+ 'name': 'Left double long arrow',
564
+ 'char': '',
565
+ 'codes': [
566
+ '⟸'
567
567
  ]
568
568
  },
569
569
  {
570
- "name": "Right double long arrow",
571
- "char": "",
572
- "codes": [
573
- "⟹"
570
+ 'name': 'Right double long arrow',
571
+ 'char': '',
572
+ 'codes': [
573
+ '⟹'
574
574
  ]
575
575
  },
576
576
  {
577
- "name": "Left right long double arrow",
578
- "char": "",
579
- "codes": [
580
- "⟺"
577
+ 'name': 'Left right long double arrow',
578
+ 'char': '',
579
+ 'codes': [
580
+ '⟺'
581
581
  ]
582
582
  },
583
583
  {
584
- "name": "Long rightwards arrow from bar",
585
- "char": "",
586
- "codes": [
587
- "⟼"
584
+ 'name': 'Long rightwards arrow from bar',
585
+ 'char': '',
586
+ 'codes': [
587
+ '⟼'
588
588
  ]
589
589
  },
590
590
  {
591
- "name": "Long rightwards squiggle arrow",
592
- "char": "",
593
- "codes": [
594
- "⟿"
591
+ 'name': 'Long rightwards squiggle arrow',
592
+ 'char': '',
593
+ 'codes': [
594
+ '⟿'
595
595
  ]
596
596
  },
597
597
  {
598
- "name": "Leftwards double arrow with stroke",
599
- "char": "",
600
- "codes": [
601
- "⤂"
598
+ 'name': 'Leftwards double arrow with stroke',
599
+ 'char': '',
600
+ 'codes': [
601
+ '⤂'
602
602
  ]
603
603
  },
604
604
  {
605
- "name": "Rightwards double arrow with stroke",
606
- "char": "",
607
- "codes": [
608
- "⤃"
605
+ 'name': 'Rightwards double arrow with stroke',
606
+ 'char': '',
607
+ 'codes': [
608
+ '⤃'
609
609
  ]
610
610
  },
611
611
  {
612
- "name": "Left right double arrow with stroke",
613
- "char": "",
614
- "codes": [
615
- "⤄"
612
+ 'name': 'Left right double arrow with stroke',
613
+ 'char': '',
614
+ 'codes': [
615
+ '⤄'
616
616
  ]
617
617
  },
618
618
  {
619
- "name": "Rightwards two headed arrow from bar",
620
- "char": "",
621
- "codes": [
622
- "⤅"
619
+ 'name': 'Rightwards two headed arrow from bar',
620
+ 'char': '',
621
+ 'codes': [
622
+ '⤅'
623
623
  ]
624
624
  },
625
625
  {
626
- "name": "Left double dash arrow",
627
- "char": "",
628
- "codes": [
629
- "⤌"
626
+ 'name': 'Left double dash arrow',
627
+ 'char': '',
628
+ 'codes': [
629
+ '⤌'
630
630
  ]
631
631
  },
632
632
  {
633
- "name": "Right double dash arrow",
634
- "char": "",
635
- "codes": [
636
- "⤍"
633
+ 'name': 'Right double dash arrow',
634
+ 'char': '',
635
+ 'codes': [
636
+ '⤍'
637
637
  ]
638
638
  },
639
639
  {
640
- "name": "Left triple dash arrow",
641
- "char": "",
642
- "codes": [
643
- "⤎"
640
+ 'name': 'Left triple dash arrow',
641
+ 'char': '',
642
+ 'codes': [
643
+ '⤎'
644
644
  ]
645
645
  },
646
646
  {
647
- "name": "Right triple dash arrow",
648
- "char": "",
649
- "codes": [
650
- "⤏"
647
+ 'name': 'Right triple dash arrow',
648
+ 'char': '',
649
+ 'codes': [
650
+ '⤏'
651
651
  ]
652
652
  },
653
653
  {
654
- "name": "Left triple dash double headed arrow",
655
- "char": "",
656
- "codes": [
657
- "⤐"
654
+ 'name': 'Left triple dash double headed arrow',
655
+ 'char': '',
656
+ 'codes': [
657
+ '⤐'
658
658
  ]
659
659
  },
660
660
  {
661
- "name": "Rightwards dotted arrow",
662
- "char": "",
663
- "codes": [
664
- "⤑"
661
+ 'name': 'Rightwards dotted arrow',
662
+ 'char': '',
663
+ 'codes': [
664
+ '⤑'
665
665
  ]
666
666
  },
667
667
  {
668
- "name": "Upwards arrow from bar",
669
- "char": "",
670
- "codes": [
671
- "⤒"
668
+ 'name': 'Upwards arrow from bar',
669
+ 'char': '',
670
+ 'codes': [
671
+ '⤒'
672
672
  ]
673
673
  },
674
674
  {
675
- "name": "Downwards arrow from bar",
676
- "char": "",
677
- "codes": [
678
- "⤓"
675
+ 'name': 'Downwards arrow from bar',
676
+ 'char': '',
677
+ 'codes': [
678
+ '⤓'
679
679
  ]
680
680
  },
681
681
  {
682
- "name": "Rightwards double headed arrow with tail",
683
- "char": "",
684
- "codes": [
685
- "⤖"
682
+ 'name': 'Rightwards double headed arrow with tail',
683
+ 'char': '',
684
+ 'codes': [
685
+ '⤖'
686
686
  ]
687
687
  },
688
688
  {
689
- "name": "Leftwards arrow tail",
690
- "char": "",
691
- "codes": [
692
- "⤙"
689
+ 'name': 'Leftwards arrow tail',
690
+ 'char': '',
691
+ 'codes': [
692
+ '⤙'
693
693
  ]
694
694
  },
695
695
  {
696
- "name": "Rightwards arrow tail",
697
- "char": "",
698
- "codes": [
699
- "⤚"
696
+ 'name': 'Rightwards arrow tail',
697
+ 'char': '',
698
+ 'codes': [
699
+ '⤚'
700
700
  ]
701
701
  },
702
702
  {
703
- "name": "Leftwards double arrow tail",
704
- "char": "",
705
- "codes": [
706
- "⤛"
703
+ 'name': 'Leftwards double arrow tail',
704
+ 'char': '',
705
+ 'codes': [
706
+ '⤛'
707
707
  ]
708
708
  },
709
709
  {
710
- "name": "Rightwards double arrow tail",
711
- "char": "",
712
- "codes": [
713
- "⤜"
710
+ 'name': 'Rightwards double arrow tail',
711
+ 'char': '',
712
+ 'codes': [
713
+ '⤜'
714
714
  ]
715
715
  },
716
716
  {
717
- "name": "Leftwards arrow to black diamond",
718
- "char": "",
719
- "codes": [
720
- "⤝"
717
+ 'name': 'Leftwards arrow to black diamond',
718
+ 'char': '',
719
+ 'codes': [
720
+ '⤝'
721
721
  ]
722
722
  },
723
723
  {
724
- "name": "Rightwards arrow to black diamond",
725
- "char": "",
726
- "codes": [
727
- "⤞"
724
+ 'name': 'Rightwards arrow to black diamond',
725
+ 'char': '',
726
+ 'codes': [
727
+ '⤞'
728
728
  ]
729
729
  },
730
730
  {
731
- "name": "Leftwards arrow to black diamond from bar",
732
- "char": "",
733
- "codes": [
734
- "⤟"
731
+ 'name': 'Leftwards arrow to black diamond from bar',
732
+ 'char': '',
733
+ 'codes': [
734
+ '⤟'
735
735
  ]
736
736
  },
737
737
  {
738
- "name": "Rightwards arrow to black diamond from bar",
739
- "char": "",
740
- "codes": [
741
- "⤠"
738
+ 'name': 'Rightwards arrow to black diamond from bar',
739
+ 'char': '',
740
+ 'codes': [
741
+ '⤠'
742
742
  ]
743
743
  },
744
744
  {
745
- "name": "Arrow with hook",
746
- "char": "",
747
- "codes": [
748
- "⤣"
745
+ 'name': 'Arrow with hook',
746
+ 'char': '',
747
+ 'codes': [
748
+ '⤣'
749
749
  ]
750
750
  },
751
751
  {
752
- "name": "Arrow with hook",
753
- "char": "",
754
- "codes": [
755
- "⤤"
752
+ 'name': 'Arrow with hook',
753
+ 'char': '',
754
+ 'codes': [
755
+ '⤤'
756
756
  ]
757
757
  },
758
758
  {
759
- "name": "Arrow with hook",
760
- "char": "",
761
- "codes": [
762
- "⤥"
759
+ 'name': 'Arrow with hook',
760
+ 'char': '',
761
+ 'codes': [
762
+ '⤥'
763
763
  ]
764
764
  },
765
765
  {
766
- "name": "Arrow with hook",
767
- "char": "",
768
- "codes": [
769
- "⤦"
766
+ 'name': 'Arrow with hook',
767
+ 'char': '',
768
+ 'codes': [
769
+ '⤦'
770
770
  ]
771
771
  },
772
772
  {
773
- "name": "Crossed arrows top",
774
- "char": "",
775
- "codes": [
776
- "⤧"
773
+ 'name': 'Crossed arrows top',
774
+ 'char': '',
775
+ 'codes': [
776
+ '⤧'
777
777
  ]
778
778
  },
779
779
  {
780
- "name": "Crossed arrows right",
781
- "char": "",
782
- "codes": [
783
- "⤨"
780
+ 'name': 'Crossed arrows right',
781
+ 'char': '',
782
+ 'codes': [
783
+ '⤨'
784
784
  ]
785
785
  },
786
786
  {
787
- "name": "Crossed arrows down",
788
- "char": "",
789
- "codes": [
790
- "⤩"
787
+ 'name': 'Crossed arrows down',
788
+ 'char': '',
789
+ 'codes': [
790
+ '⤩'
791
791
  ]
792
792
  },
793
793
  {
794
- "name": "Crossed arrows left",
795
- "char": "",
796
- "codes": [
797
- "⤪"
794
+ 'name': 'Crossed arrows left',
795
+ 'char': '',
796
+ 'codes': [
797
+ '⤪'
798
798
  ]
799
799
  },
800
800
  {
801
- "name": "Wave arrow",
802
- "char": "",
803
- "codes": [
804
- "⤳"
801
+ 'name': 'Wave arrow',
802
+ 'char': '',
803
+ 'codes': [
804
+ '⤳'
805
805
  ]
806
806
  },
807
807
  {
808
- "name": "Curved arrow",
809
- "char": "",
810
- "codes": [
811
- "⤵"
808
+ 'name': 'Curved arrow',
809
+ 'char': '',
810
+ 'codes': [
811
+ '⤵'
812
812
  ]
813
813
  },
814
814
  {
815
- "name": "Curved arrow",
816
- "char": "",
817
- "codes": [
818
- "⤶"
815
+ 'name': 'Curved arrow',
816
+ 'char': '',
817
+ 'codes': [
818
+ '⤶'
819
819
  ]
820
820
  },
821
821
  {
822
- "name": "Curved arrow",
823
- "char": "",
824
- "codes": [
825
- "⤷"
822
+ 'name': 'Curved arrow',
823
+ 'char': '',
824
+ 'codes': [
825
+ '⤷'
826
826
  ]
827
827
  },
828
828
  {
829
- "name": "Curved arrow",
830
- "char": "",
831
- "codes": [
832
- "⤸"
829
+ 'name': 'Curved arrow',
830
+ 'char': '',
831
+ 'codes': [
832
+ '⤸'
833
833
  ]
834
834
  },
835
835
  {
836
- "name": "Curved arrow",
837
- "char": "",
838
- "codes": [
839
- "⤹"
836
+ 'name': 'Curved arrow',
837
+ 'char': '',
838
+ 'codes': [
839
+ '⤹'
840
840
  ]
841
841
  },
842
842
  {
843
- "name": "Arc arrow with minus",
844
- "char": "",
845
- "codes": [
846
- "⤼"
843
+ 'name': 'Arc arrow with minus',
844
+ 'char': '',
845
+ 'codes': [
846
+ '⤼'
847
847
  ]
848
848
  },
849
849
  {
850
- "name": "Arc arrow with plus",
851
- "char": "",
852
- "codes": [
853
- "⤽"
850
+ 'name': 'Arc arrow with plus',
851
+ 'char': '',
852
+ 'codes': [
853
+ '⤽'
854
854
  ]
855
855
  },
856
856
  {
857
- "name": "Arrow with plus",
858
- "char": "",
859
- "codes": [
860
- "⥅"
857
+ 'name': 'Arrow with plus',
858
+ 'char': '',
859
+ 'codes': [
860
+ '⥅'
861
861
  ]
862
862
  },
863
863
  {
864
- "name": "Arrows with circle",
865
- "char": "",
866
- "codes": [
867
- "⥈"
864
+ 'name': 'Arrows with circle',
865
+ 'char': '',
866
+ 'codes': [
867
+ '⥈'
868
868
  ]
869
869
  },
870
870
  {
871
- "name": "Two headed arrow from circle",
872
- "char": "",
873
- "codes": [
874
- "⥉"
871
+ 'name': 'Two headed arrow from circle',
872
+ 'char': '',
873
+ 'codes': [
874
+ '⥉'
875
875
  ]
876
876
  },
877
877
  {
878
- "name": "Left right vector",
879
- "char": "",
880
- "codes": [
881
- "⥊"
878
+ 'name': 'Left right vector',
879
+ 'char': '',
880
+ 'codes': [
881
+ '⥊'
882
882
  ]
883
883
  },
884
884
  {
885
- "name": "Right left vector",
886
- "char": "",
887
- "codes": [
888
- "⥋"
885
+ 'name': 'Right left vector',
886
+ 'char': '',
887
+ 'codes': [
888
+ '⥋'
889
889
  ]
890
890
  },
891
891
  {
892
- "name": "Left right vector",
893
- "char": "",
894
- "codes": [
895
- "⥎"
892
+ 'name': 'Left right vector',
893
+ 'char': '',
894
+ 'codes': [
895
+ '⥎'
896
896
  ]
897
897
  },
898
898
  {
899
- "name": "Right up down vector",
900
- "char": "",
901
- "codes": [
902
- "⥏"
899
+ 'name': 'Right up down vector',
900
+ 'char': '',
901
+ 'codes': [
902
+ '⥏'
903
903
  ]
904
904
  },
905
905
  {
906
- "name": "Down left right Vector",
907
- "char": "",
908
- "codes": [
909
- "⥐"
906
+ 'name': 'Down left right Vector',
907
+ 'char': '',
908
+ 'codes': [
909
+ '⥐'
910
910
  ]
911
911
  },
912
912
  {
913
- "name": "Left down up vector",
914
- "char": "",
915
- "codes": [
916
- "⥑"
913
+ 'name': 'Left down up vector',
914
+ 'char': '',
915
+ 'codes': [
916
+ '⥑'
917
917
  ]
918
918
  },
919
919
  {
920
- "name": "Left vector bar",
921
- "char": "",
922
- "codes": [
923
- "⥒"
920
+ 'name': 'Left vector bar',
921
+ 'char': '',
922
+ 'codes': [
923
+ '⥒'
924
924
  ]
925
925
  },
926
926
  {
927
- "name": "Right vector bar",
928
- "char": "",
929
- "codes": [
930
- "⥓"
927
+ 'name': 'Right vector bar',
928
+ 'char': '',
929
+ 'codes': [
930
+ '⥓'
931
931
  ]
932
932
  },
933
933
  {
934
- "name": "Right up vector bar",
935
- "char": "",
936
- "codes": [
937
- "⥔"
934
+ 'name': 'Right up vector bar',
935
+ 'char': '',
936
+ 'codes': [
937
+ '⥔'
938
938
  ]
939
939
  },
940
940
  {
941
- "name": "Right down vector bar",
942
- "char": "",
943
- "codes": [
944
- "⥕"
941
+ 'name': 'Right down vector bar',
942
+ 'char': '',
943
+ 'codes': [
944
+ '⥕'
945
945
  ]
946
946
  },
947
947
  {
948
- "name": "Down left vector bar",
949
- "char": "",
950
- "codes": [
951
- "⥖"
948
+ 'name': 'Down left vector bar',
949
+ 'char': '',
950
+ 'codes': [
951
+ '⥖'
952
952
  ]
953
953
  },
954
954
  {
955
- "name": "Down right vector bar",
956
- "char": "",
957
- "codes": [
958
- "⥗"
955
+ 'name': 'Down right vector bar',
956
+ 'char': '',
957
+ 'codes': [
958
+ '⥗'
959
959
  ]
960
960
  },
961
961
  {
962
- "name": "Left up vector bar",
963
- "char": "",
964
- "codes": [
965
- "⥘"
962
+ 'name': 'Left up vector bar',
963
+ 'char': '',
964
+ 'codes': [
965
+ '⥘'
966
966
  ]
967
967
  },
968
968
  {
969
- "name": "Left down vector bar",
970
- "char": "",
971
- "codes": [
972
- "⥙"
969
+ 'name': 'Left down vector bar',
970
+ 'char': '',
971
+ 'codes': [
972
+ '⥙'
973
973
  ]
974
974
  },
975
975
  {
976
- "name": "Left tee vector",
977
- "char": "",
978
- "codes": [
979
- "⥚"
976
+ 'name': 'Left tee vector',
977
+ 'char': '',
978
+ 'codes': [
979
+ '⥚'
980
980
  ]
981
981
  },
982
982
  {
983
- "name": "Right tee vector",
984
- "char": "",
985
- "codes": [
986
- "⥛"
983
+ 'name': 'Right tee vector',
984
+ 'char': '',
985
+ 'codes': [
986
+ '⥛'
987
987
  ]
988
988
  },
989
989
  {
990
- "name": "Right up tee vector",
991
- "char": "",
992
- "codes": [
993
- "⥜"
990
+ 'name': 'Right up tee vector',
991
+ 'char': '',
992
+ 'codes': [
993
+ '⥜'
994
994
  ]
995
995
  },
996
996
  {
997
- "name": "Right down tee vector",
998
- "char": "",
999
- "codes": [
1000
- "⥝"
997
+ 'name': 'Right down tee vector',
998
+ 'char': '',
999
+ 'codes': [
1000
+ '⥝'
1001
1001
  ]
1002
1002
  },
1003
1003
  {
1004
- "name": "Down left tee vector",
1005
- "char": "",
1006
- "codes": [
1007
- "⥞"
1004
+ 'name': 'Down left tee vector',
1005
+ 'char': '',
1006
+ 'codes': [
1007
+ '⥞'
1008
1008
  ]
1009
1009
  },
1010
1010
  {
1011
- "name": "Down right tee vector",
1012
- "char": "",
1013
- "codes": [
1014
- "⥟"
1011
+ 'name': 'Down right tee vector',
1012
+ 'char': '',
1013
+ 'codes': [
1014
+ '⥟'
1015
1015
  ]
1016
1016
  },
1017
1017
  {
1018
- "name": "Left up tee vector",
1019
- "char": "",
1020
- "codes": [
1021
- "⥠"
1018
+ 'name': 'Left up tee vector',
1019
+ 'char': '',
1020
+ 'codes': [
1021
+ '⥠'
1022
1022
  ]
1023
1023
  },
1024
1024
  {
1025
- "name": "Left down tee vector",
1026
- "char": "",
1027
- "codes": [
1028
- "⥡"
1025
+ 'name': 'Left down tee vector',
1026
+ 'char': '',
1027
+ 'codes': [
1028
+ '⥡'
1029
1029
  ]
1030
1030
  },
1031
1031
  {
1032
- "name": "Left harpoon",
1033
- "char": "",
1034
- "codes": [
1035
- "⥢"
1032
+ 'name': 'Left harpoon',
1033
+ 'char': '',
1034
+ 'codes': [
1035
+ '⥢'
1036
1036
  ]
1037
1037
  },
1038
1038
  {
1039
- "name": "Up harpoon",
1040
- "char": "",
1041
- "codes": [
1042
- "⥣"
1039
+ 'name': 'Up harpoon',
1040
+ 'char': '',
1041
+ 'codes': [
1042
+ '⥣'
1043
1043
  ]
1044
1044
  },
1045
1045
  {
1046
- "name": "Right harpoon",
1047
- "char": "",
1048
- "codes": [
1049
- "⥤"
1046
+ 'name': 'Right harpoon',
1047
+ 'char': '',
1048
+ 'codes': [
1049
+ '⥤'
1050
1050
  ]
1051
1051
  },
1052
1052
  {
1053
- "name": "Down harpoon",
1054
- "char": "",
1055
- "codes": [
1056
- "⥥"
1053
+ 'name': 'Down harpoon',
1054
+ 'char': '',
1055
+ 'codes': [
1056
+ '⥥'
1057
1057
  ]
1058
1058
  },
1059
1059
  {
1060
- "name": "Double harpoon",
1061
- "char": "",
1062
- "codes": [
1063
- "⥦"
1060
+ 'name': 'Double harpoon',
1061
+ 'char': '',
1062
+ 'codes': [
1063
+ '⥦'
1064
1064
  ]
1065
1065
  },
1066
1066
  {
1067
- "name": "Double harpoon",
1068
- "char": "",
1069
- "codes": [
1070
- "⥧"
1067
+ 'name': 'Double harpoon',
1068
+ 'char': '',
1069
+ 'codes': [
1070
+ '⥧'
1071
1071
  ]
1072
1072
  },
1073
1073
  {
1074
- "name": "Double harpoon",
1075
- "char": "",
1076
- "codes": [
1077
- "⥨"
1074
+ 'name': 'Double harpoon',
1075
+ 'char': '',
1076
+ 'codes': [
1077
+ '⥨'
1078
1078
  ]
1079
1079
  },
1080
1080
  {
1081
- "name": "Double harpoon",
1082
- "char": "",
1083
- "codes": [
1084
- "⥩"
1081
+ 'name': 'Double harpoon',
1082
+ 'char': '',
1083
+ 'codes': [
1084
+ '⥩'
1085
1085
  ]
1086
1086
  },
1087
1087
  {
1088
- "name": "Harpoon with line",
1089
- "char": "",
1090
- "codes": [
1091
- "⥪"
1088
+ 'name': 'Harpoon with line',
1089
+ 'char': '',
1090
+ 'codes': [
1091
+ '⥪'
1092
1092
  ]
1093
1093
  },
1094
1094
  {
1095
- "name": "Harpoon with line",
1096
- "char": "",
1097
- "codes": [
1098
- "⥫"
1095
+ 'name': 'Harpoon with line',
1096
+ 'char': '',
1097
+ 'codes': [
1098
+ '⥫'
1099
1099
  ]
1100
1100
  },
1101
1101
  {
1102
- "name": "Harpoon with line",
1103
- "char": "",
1104
- "codes": [
1105
- "⥬"
1102
+ 'name': 'Harpoon with line',
1103
+ 'char': '',
1104
+ 'codes': [
1105
+ '⥬'
1106
1106
  ]
1107
1107
  },
1108
1108
  {
1109
- "name": "Harpoon with line",
1110
- "char": "",
1111
- "codes": [
1112
- "⥭"
1109
+ 'name': 'Harpoon with line',
1110
+ 'char': '',
1111
+ 'codes': [
1112
+ '⥭'
1113
1113
  ]
1114
1114
  },
1115
1115
  {
1116
- "name": "Up down harpoon",
1117
- "char": "",
1118
- "codes": [
1119
- "⥮"
1116
+ 'name': 'Up down harpoon',
1117
+ 'char': '',
1118
+ 'codes': [
1119
+ '⥮'
1120
1120
  ]
1121
1121
  },
1122
1122
  {
1123
- "name": "Down up harpoon",
1124
- "char": "",
1125
- "codes": [
1126
- "⥯"
1123
+ 'name': 'Down up harpoon',
1124
+ 'char': '',
1125
+ 'codes': [
1126
+ '⥯'
1127
1127
  ]
1128
1128
  },
1129
1129
  {
1130
- "name": "Round implies",
1131
- "char": "",
1132
- "codes": [
1133
- "⥰"
1130
+ 'name': 'Round implies',
1131
+ 'char': '',
1132
+ 'codes': [
1133
+ '⥰'
1134
1134
  ]
1135
1135
  },
1136
1136
  {
1137
- "name": "Right arrow with equal",
1138
- "char": "",
1139
- "codes": [
1140
- "⥱"
1137
+ 'name': 'Right arrow with equal',
1138
+ 'char': '',
1139
+ 'codes': [
1140
+ '⥱'
1141
1141
  ]
1142
1142
  },
1143
1143
  {
1144
- "name": "Right arrow with tilde",
1145
- "char": "",
1146
- "codes": [
1147
- "⥲"
1144
+ 'name': 'Right arrow with tilde',
1145
+ 'char': '',
1146
+ 'codes': [
1147
+ '⥲'
1148
1148
  ]
1149
1149
  },
1150
1150
  {
1151
- "name": "Left arrow with tilde",
1152
- "char": "",
1153
- "codes": [
1154
- "⥳"
1151
+ 'name': 'Left arrow with tilde',
1152
+ 'char': '',
1153
+ 'codes': [
1154
+ '⥳'
1155
1155
  ]
1156
1156
  },
1157
1157
  {
1158
- "name": "Right arrow with tilde",
1159
- "char": "",
1160
- "codes": [
1161
- "⥴"
1158
+ 'name': 'Right arrow with tilde',
1159
+ 'char': '',
1160
+ 'codes': [
1161
+ '⥴'
1162
1162
  ]
1163
1163
  },
1164
1164
  {
1165
- "name": "Right arrow with double tilde",
1166
- "char": "",
1167
- "codes": [
1168
- "⥵"
1165
+ 'name': 'Right arrow with double tilde',
1166
+ 'char': '',
1167
+ 'codes': [
1168
+ '⥵'
1169
1169
  ]
1170
1170
  },
1171
1171
  {
1172
- "name": "Left arrow with less-than",
1173
- "char": "",
1174
- "codes": [
1175
- "⥶"
1172
+ 'name': 'Left arrow with less-than',
1173
+ 'char': '',
1174
+ 'codes': [
1175
+ '⥶'
1176
1176
  ]
1177
1177
  },
1178
1178
  {
1179
- "name": "Right arrow with greater-than",
1180
- "char": "",
1181
- "codes": [
1182
- "⥸"
1179
+ 'name': 'Right arrow with greater-than',
1180
+ 'char': '',
1181
+ 'codes': [
1182
+ '⥸'
1183
1183
  ]
1184
1184
  },
1185
1185
  {
1186
- "name": "Right arrow with subset",
1187
- "char": "",
1188
- "codes": [
1189
- "⥹"
1186
+ 'name': 'Right arrow with subset',
1187
+ 'char': '',
1188
+ 'codes': [
1189
+ '⥹'
1190
1190
  ]
1191
1191
  },
1192
1192
  {
1193
- "name": "Left arrow with superset",
1194
- "char": "",
1195
- "codes": [
1196
- "⥻"
1193
+ 'name': 'Left arrow with superset',
1194
+ 'char': '',
1195
+ 'codes': [
1196
+ '⥻'
1197
1197
  ]
1198
1198
  },
1199
1199
  {
1200
- "name": "Left fish tail",
1201
- "char": "",
1202
- "codes": [
1203
- "⥼"
1200
+ 'name': 'Left fish tail',
1201
+ 'char': '',
1202
+ 'codes': [
1203
+ '⥼'
1204
1204
  ]
1205
1205
  },
1206
1206
  {
1207
- "name": "Right fish tail",
1208
- "char": "",
1209
- "codes": [
1210
- "⥽"
1207
+ 'name': 'Right fish tail',
1208
+ 'char': '',
1209
+ 'codes': [
1210
+ '⥽'
1211
1211
  ]
1212
1212
  },
1213
1213
  {
1214
- "name": "Up fish tail",
1215
- "char": "",
1216
- "codes": [
1217
- "⥾"
1214
+ 'name': 'Up fish tail',
1215
+ 'char': '',
1216
+ 'codes': [
1217
+ '⥾'
1218
1218
  ]
1219
1219
  },
1220
1220
  {
1221
- "name": "Down fish tail",
1222
- "char": "⥿",
1223
- "codes": [
1224
- "⥿"
1221
+ 'name': 'Down fish tail',
1222
+ 'char': '⥿',
1223
+ 'codes': [
1224
+ '⥿'
1225
1225
  ]
1226
1226
  }
1227
1227
  ]