tiptapify 0.0.35 → 0.1.0

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 (59) hide show
  1. package/README.md +12 -6
  2. package/package.json +7 -3
  3. package/src/components/Tiptapify.vue +95 -2
  4. package/src/components/Toolbar/Index.vue +10 -0
  5. package/src/components/Toolbar/Items.vue +17 -13
  6. package/src/components/Toolbar/media.ts +5 -0
  7. package/src/components/editorExtensions.ts +15 -6
  8. package/src/components/index.ts +2 -1
  9. package/src/extensions/PickerEventBus.ts +32 -0
  10. package/src/extensions/charmap/arrows.ts +1227 -0
  11. package/src/extensions/charmap/box_drawing.ts +324 -0
  12. package/src/extensions/charmap/currency.ts +157 -0
  13. package/src/extensions/charmap/cyrillic.ts +646 -0
  14. package/src/extensions/charmap/diacritics.ts +107 -0
  15. package/src/extensions/charmap/extended_letters.ts +1311 -0
  16. package/src/extensions/charmap/greek.ts +443 -0
  17. package/src/extensions/charmap/hebrew.ts +177 -0
  18. package/src/extensions/charmap/index.ts +75 -0
  19. package/src/extensions/charmap/math.ts +2949 -0
  20. package/src/extensions/charmap/punctuation.ts +121 -0
  21. package/src/extensions/charmap/symbols.ts +506 -0
  22. package/src/extensions/charmap/typography.ts +499 -0
  23. package/src/extensions/components/media/charmap/Button.vue +27 -0
  24. package/src/extensions/components/media/charmap/Picker.vue +229 -0
  25. package/src/extensions/components/media/emoji/Button.vue +6 -147
  26. package/src/extensions/components/media/emoji/Picker.vue +225 -0
  27. package/src/extensions/components/media/image/ImageDialog.vue +69 -27
  28. package/src/extensions/components/slashCommands/CommandsList.vue +65 -22
  29. package/src/extensions/components/slashCommands/PickerDialog.vue +44 -0
  30. package/src/extensions/components/slashCommands/suggestion.ts +152 -105
  31. package/src/extensions/slash-commands.ts +169 -9
  32. package/src/i18n/locales/ar.json +37 -14
  33. package/src/i18n/locales/ch.json +37 -14
  34. package/src/i18n/locales/cz.json +37 -14
  35. package/src/i18n/locales/de.json +37 -14
  36. package/src/i18n/locales/en.json +34 -12
  37. package/src/i18n/locales/es.json +37 -14
  38. package/src/i18n/locales/fi.json +37 -14
  39. package/src/i18n/locales/fr.json +37 -14
  40. package/src/i18n/locales/hu.json +37 -14
  41. package/src/i18n/locales/it.json +37 -14
  42. package/src/i18n/locales/ja.json +37 -14
  43. package/src/i18n/locales/ko.json +37 -14
  44. package/src/i18n/locales/la.json +37 -14
  45. package/src/i18n/locales/lt.json +37 -14
  46. package/src/i18n/locales/nl.json +37 -14
  47. package/src/i18n/locales/pl.json +37 -14
  48. package/src/i18n/locales/pt.json +37 -14
  49. package/src/i18n/locales/ru.json +37 -14
  50. package/src/i18n/locales/se.json +37 -14
  51. package/src/i18n/locales/th.json +37 -14
  52. package/src/i18n/locales/tr.json +37 -14
  53. package/src/i18n/locales/{ua.json → uk.json} +37 -14
  54. package/src/i18n/locales/vi.json +37 -14
  55. package/src/types/slashCommandsTypes.ts +19 -0
  56. package/src/types/toolbarTypes.ts +1 -1
  57. package/dist/tiptapify.css +0 -1
  58. package/dist/tiptapify.mjs +0 -82239
  59. package/dist/tiptapify.umd.js +0 -202
@@ -0,0 +1,1311 @@
1
+ export default [
2
+ {
3
+ "name": "A with grave",
4
+ "char": "À",
5
+ "codes": [
6
+ "À"
7
+ ]
8
+ },
9
+ {
10
+ "name": "A with acute",
11
+ "char": "Á",
12
+ "codes": [
13
+ "Á"
14
+ ]
15
+ },
16
+ {
17
+ "name": "A with circumflex",
18
+ "char": "Â",
19
+ "codes": [
20
+ "Â"
21
+ ]
22
+ },
23
+ {
24
+ "name": "A with tilde",
25
+ "char": "Ã",
26
+ "codes": [
27
+ "Ã"
28
+ ]
29
+ },
30
+ {
31
+ "name": "A with diaeresis",
32
+ "char": "Ä",
33
+ "codes": [
34
+ "Ä"
35
+ ]
36
+ },
37
+ {
38
+ "name": "A with ring",
39
+ "char": "Å",
40
+ "codes": [
41
+ "Å"
42
+ ]
43
+ },
44
+ {
45
+ "name": "Æ letter",
46
+ "char": "Æ",
47
+ "codes": [
48
+ "Æ"
49
+ ]
50
+ },
51
+ {
52
+ "name": "C cedilla",
53
+ "char": "Ç",
54
+ "codes": [
55
+ "Ç"
56
+ ]
57
+ },
58
+ {
59
+ "name": "E with grave",
60
+ "char": "È",
61
+ "codes": [
62
+ "È"
63
+ ]
64
+ },
65
+ {
66
+ "name": "E with acute",
67
+ "char": "É",
68
+ "codes": [
69
+ "É"
70
+ ]
71
+ },
72
+ {
73
+ "name": "E with circumflex",
74
+ "char": "Ê",
75
+ "codes": [
76
+ "Ê"
77
+ ]
78
+ },
79
+ {
80
+ "name": "E with diaeresis",
81
+ "char": "Ë",
82
+ "codes": [
83
+ "Ë"
84
+ ]
85
+ },
86
+ {
87
+ "name": "I with grave",
88
+ "char": "Ì",
89
+ "codes": [
90
+ "Ì"
91
+ ]
92
+ },
93
+ {
94
+ "name": "I with acute",
95
+ "char": "Í",
96
+ "codes": [
97
+ "Í"
98
+ ]
99
+ },
100
+ {
101
+ "name": "I with circumflex",
102
+ "char": "Î",
103
+ "codes": [
104
+ "Î"
105
+ ]
106
+ },
107
+ {
108
+ "name": "I with diaeresis",
109
+ "char": "Ï",
110
+ "codes": [
111
+ "Ï"
112
+ ]
113
+ },
114
+ {
115
+ "name": "Eth",
116
+ "char": "Ð",
117
+ "codes": [
118
+ "Ð"
119
+ ]
120
+ },
121
+ {
122
+ "name": "N with tilde",
123
+ "char": "Ñ",
124
+ "codes": [
125
+ "Ñ"
126
+ ]
127
+ },
128
+ {
129
+ "name": "O with grave",
130
+ "char": "Ò",
131
+ "codes": [
132
+ "Ò"
133
+ ]
134
+ },
135
+ {
136
+ "name": "O with acute",
137
+ "char": "Ó",
138
+ "codes": [
139
+ "Ó"
140
+ ]
141
+ },
142
+ {
143
+ "name": "O with circumflex",
144
+ "char": "Ô",
145
+ "codes": [
146
+ "Ô"
147
+ ]
148
+ },
149
+ {
150
+ "name": "O with tilde",
151
+ "char": "Õ",
152
+ "codes": [
153
+ "Õ"
154
+ ]
155
+ },
156
+ {
157
+ "name": "O with diaeresis",
158
+ "char": "Ö",
159
+ "codes": [
160
+ "Ö"
161
+ ]
162
+ },
163
+ {
164
+ "name": "O with stroke",
165
+ "char": "Ø",
166
+ "codes": [
167
+ "Ø"
168
+ ]
169
+ },
170
+ {
171
+ "name": "U with grave",
172
+ "char": "Ù",
173
+ "codes": [
174
+ "Ù"
175
+ ]
176
+ },
177
+ {
178
+ "name": "U with acute",
179
+ "char": "Ú",
180
+ "codes": [
181
+ "Ú"
182
+ ]
183
+ },
184
+ {
185
+ "name": "U with circumflex",
186
+ "char": "Û",
187
+ "codes": [
188
+ "Û"
189
+ ]
190
+ },
191
+ {
192
+ "name": "U with diaeresis",
193
+ "char": "Ü",
194
+ "codes": [
195
+ "Ü"
196
+ ]
197
+ },
198
+ {
199
+ "name": "Y with acute",
200
+ "char": "Ý",
201
+ "codes": [
202
+ "Ý"
203
+ ]
204
+ },
205
+ {
206
+ "name": "Thorn",
207
+ "char": "Þ",
208
+ "codes": [
209
+ "Þ"
210
+ ]
211
+ },
212
+ {
213
+ "name": "Sharp S / German S",
214
+ "char": "ß",
215
+ "codes": [
216
+ "ß"
217
+ ]
218
+ },
219
+ {
220
+ "name": "a with grade",
221
+ "char": "à",
222
+ "codes": [
223
+ "à"
224
+ ]
225
+ },
226
+ {
227
+ "name": "a with acute",
228
+ "char": "á",
229
+ "codes": [
230
+ "á"
231
+ ]
232
+ },
233
+ {
234
+ "name": "a with circumflex",
235
+ "char": "â",
236
+ "codes": [
237
+ "â"
238
+ ]
239
+ },
240
+ {
241
+ "name": "a with tilde",
242
+ "char": "ã",
243
+ "codes": [
244
+ "ã"
245
+ ]
246
+ },
247
+ {
248
+ "name": "a with diaeresis",
249
+ "char": "ä",
250
+ "codes": [
251
+ "ä"
252
+ ]
253
+ },
254
+ {
255
+ "name": "a with ring",
256
+ "char": "å",
257
+ "codes": [
258
+ "å"
259
+ ]
260
+ },
261
+ {
262
+ "name": "small letter æ",
263
+ "char": "æ",
264
+ "codes": [
265
+ "æ"
266
+ ]
267
+ },
268
+ {
269
+ "name": "c cedilla",
270
+ "char": "ç",
271
+ "codes": [
272
+ "ç"
273
+ ]
274
+ },
275
+ {
276
+ "name": "e with grave",
277
+ "char": "è",
278
+ "codes": [
279
+ "è"
280
+ ]
281
+ },
282
+ {
283
+ "name": "e with acute",
284
+ "char": "é",
285
+ "codes": [
286
+ "é"
287
+ ]
288
+ },
289
+ {
290
+ "name": "e with circumflex",
291
+ "char": "ê",
292
+ "codes": [
293
+ "ê"
294
+ ]
295
+ },
296
+ {
297
+ "name": "e with diaeresis",
298
+ "char": "ë",
299
+ "codes": [
300
+ "ë"
301
+ ]
302
+ },
303
+ {
304
+ "name": "i with grave",
305
+ "char": "ì",
306
+ "codes": [
307
+ "ì"
308
+ ]
309
+ },
310
+ {
311
+ "name": "i with acute",
312
+ "char": "í",
313
+ "codes": [
314
+ "í"
315
+ ]
316
+ },
317
+ {
318
+ "name": "i with circumflex",
319
+ "char": "î",
320
+ "codes": [
321
+ "î"
322
+ ]
323
+ },
324
+ {
325
+ "name": "i with diaeresis",
326
+ "char": "ï",
327
+ "codes": [
328
+ "ï"
329
+ ]
330
+ },
331
+ {
332
+ "name": "Small letter eth",
333
+ "char": "ð",
334
+ "codes": [
335
+ "ð"
336
+ ]
337
+ },
338
+ {
339
+ "name": "n with tilde",
340
+ "char": "ñ",
341
+ "codes": [
342
+ "ñ"
343
+ ]
344
+ },
345
+ {
346
+ "name": "o with grave",
347
+ "char": "ò",
348
+ "codes": [
349
+ "ò"
350
+ ]
351
+ },
352
+ {
353
+ "name": "o with acute",
354
+ "char": "ó",
355
+ "codes": [
356
+ "ó"
357
+ ]
358
+ },
359
+ {
360
+ "name": "o with circumflex",
361
+ "char": "ô",
362
+ "codes": [
363
+ "ô"
364
+ ]
365
+ },
366
+ {
367
+ "name": "o with tilde",
368
+ "char": "õ",
369
+ "codes": [
370
+ "õ"
371
+ ]
372
+ },
373
+ {
374
+ "name": "o with diaeresis",
375
+ "char": "ö",
376
+ "codes": [
377
+ "ö"
378
+ ]
379
+ },
380
+ {
381
+ "name": "o with stroke",
382
+ "char": "ø",
383
+ "codes": [
384
+ "ø"
385
+ ]
386
+ },
387
+ {
388
+ "name": "u with grave",
389
+ "char": "ù",
390
+ "codes": [
391
+ "ù"
392
+ ]
393
+ },
394
+ {
395
+ "name": "u with acute",
396
+ "char": "ú",
397
+ "codes": [
398
+ "ú"
399
+ ]
400
+ },
401
+ {
402
+ "name": "u with circumflex",
403
+ "char": "û",
404
+ "codes": [
405
+ "û"
406
+ ]
407
+ },
408
+ {
409
+ "name": "u with diaeresis",
410
+ "char": "ü",
411
+ "codes": [
412
+ "ü"
413
+ ]
414
+ },
415
+ {
416
+ "name": "y with acute",
417
+ "char": "ý",
418
+ "codes": [
419
+ "ý"
420
+ ]
421
+ },
422
+ {
423
+ "name": "small letter thorn",
424
+ "char": "þ",
425
+ "codes": [
426
+ "þ"
427
+ ]
428
+ },
429
+ {
430
+ "name": "y with diaeresis",
431
+ "char": "ÿ",
432
+ "codes": [
433
+ "ÿ"
434
+ ]
435
+ },
436
+ {
437
+ "name": "A with macron",
438
+ "char": "Ā",
439
+ "codes": [
440
+ "Ā"
441
+ ]
442
+ },
443
+ {
444
+ "name": "a with macron",
445
+ "char": "ā",
446
+ "codes": [
447
+ "ā"
448
+ ]
449
+ },
450
+ {
451
+ "name": "A with breve",
452
+ "char": "Ă",
453
+ "codes": [
454
+ "Ă"
455
+ ]
456
+ },
457
+ {
458
+ "name": "a with breve",
459
+ "char": "ă",
460
+ "codes": [
461
+ "ă"
462
+ ]
463
+ },
464
+ {
465
+ "name": "A with ogonek",
466
+ "char": "Ą",
467
+ "codes": [
468
+ "Ą"
469
+ ]
470
+ },
471
+ {
472
+ "name": "a with ogonek",
473
+ "char": "ą",
474
+ "codes": [
475
+ "ą"
476
+ ]
477
+ },
478
+ {
479
+ "name": "C with acute",
480
+ "char": "Ć",
481
+ "codes": [
482
+ "Ć"
483
+ ]
484
+ },
485
+ {
486
+ "name": "c with acute",
487
+ "char": "ć",
488
+ "codes": [
489
+ "ć"
490
+ ]
491
+ },
492
+ {
493
+ "name": "C with circumflex",
494
+ "char": "Ĉ",
495
+ "codes": [
496
+ "Ĉ"
497
+ ]
498
+ },
499
+ {
500
+ "name": "c with circumflex",
501
+ "char": "ĉ",
502
+ "codes": [
503
+ "ĉ"
504
+ ]
505
+ },
506
+ {
507
+ "name": "C with dot",
508
+ "char": "Ċ",
509
+ "codes": [
510
+ "Ċ"
511
+ ]
512
+ },
513
+ {
514
+ "name": "c with dot",
515
+ "char": "ċ",
516
+ "codes": [
517
+ "ċ"
518
+ ]
519
+ },
520
+ {
521
+ "name": "C with caron",
522
+ "char": "Č",
523
+ "codes": [
524
+ "Č"
525
+ ]
526
+ },
527
+ {
528
+ "name": "c with caron",
529
+ "char": "č",
530
+ "codes": [
531
+ "č"
532
+ ]
533
+ },
534
+ {
535
+ "name": "D with caron",
536
+ "char": "Ď",
537
+ "codes": [
538
+ "Ď"
539
+ ]
540
+ },
541
+ {
542
+ "name": "d with caron",
543
+ "char": "ď",
544
+ "codes": [
545
+ "ď"
546
+ ]
547
+ },
548
+ {
549
+ "name": "D with stroke",
550
+ "char": "Đ",
551
+ "codes": [
552
+ "Đ"
553
+ ]
554
+ },
555
+ {
556
+ "name": "d with stroke",
557
+ "char": "đ",
558
+ "codes": [
559
+ "đ"
560
+ ]
561
+ },
562
+ {
563
+ "name": "E with macron",
564
+ "char": "Ē",
565
+ "codes": [
566
+ "Ē"
567
+ ]
568
+ },
569
+ {
570
+ "name": "e with macron",
571
+ "char": "ē",
572
+ "codes": [
573
+ "ē"
574
+ ]
575
+ },
576
+ {
577
+ "name": "E with dot",
578
+ "char": "Ė",
579
+ "codes": [
580
+ "Ė"
581
+ ]
582
+ },
583
+ {
584
+ "name": "e with dot",
585
+ "char": "ė",
586
+ "codes": [
587
+ "ė"
588
+ ]
589
+ },
590
+ {
591
+ "name": "E with ogonek",
592
+ "char": "Ę",
593
+ "codes": [
594
+ "Ę"
595
+ ]
596
+ },
597
+ {
598
+ "name": "e with ogonek",
599
+ "char": "ę",
600
+ "codes": [
601
+ "ę"
602
+ ]
603
+ },
604
+ {
605
+ "name": "E with caron",
606
+ "char": "Ě",
607
+ "codes": [
608
+ "Ě"
609
+ ]
610
+ },
611
+ {
612
+ "name": "e with caron",
613
+ "char": "ě",
614
+ "codes": [
615
+ "ě"
616
+ ]
617
+ },
618
+ {
619
+ "name": "G with circumflex",
620
+ "char": "Ĝ",
621
+ "codes": [
622
+ "Ĝ"
623
+ ]
624
+ },
625
+ {
626
+ "name": "g with circumflex",
627
+ "char": "ĝ",
628
+ "codes": [
629
+ "ĝ"
630
+ ]
631
+ },
632
+ {
633
+ "name": "G with breve",
634
+ "char": "Ğ",
635
+ "codes": [
636
+ "Ğ"
637
+ ]
638
+ },
639
+ {
640
+ "name": "g with breve",
641
+ "char": "ğ",
642
+ "codes": [
643
+ "ğ"
644
+ ]
645
+ },
646
+ {
647
+ "name": "G with dot",
648
+ "char": "Ġ",
649
+ "codes": [
650
+ "Ġ"
651
+ ]
652
+ },
653
+ {
654
+ "name": "g with dot",
655
+ "char": "ġ",
656
+ "codes": [
657
+ "ġ"
658
+ ]
659
+ },
660
+ {
661
+ "name": "G with cedilla",
662
+ "char": "Ģ",
663
+ "codes": [
664
+ "Ģ"
665
+ ]
666
+ },
667
+ {
668
+ "name": "H with circumflex",
669
+ "char": "Ĥ",
670
+ "codes": [
671
+ "Ĥ"
672
+ ]
673
+ },
674
+ {
675
+ "name": "h with circumflex",
676
+ "char": "ĥ",
677
+ "codes": [
678
+ "ĥ"
679
+ ]
680
+ },
681
+ {
682
+ "name": "H with stroke",
683
+ "char": "Ħ",
684
+ "codes": [
685
+ "Ħ"
686
+ ]
687
+ },
688
+ {
689
+ "name": "h with stroke",
690
+ "char": "ħ",
691
+ "codes": [
692
+ "ħ"
693
+ ]
694
+ },
695
+ {
696
+ "name": "I with tilde",
697
+ "char": "Ĩ",
698
+ "codes": [
699
+ "Ĩ"
700
+ ]
701
+ },
702
+ {
703
+ "name": "i with tilde",
704
+ "char": "ĩ",
705
+ "codes": [
706
+ "ĩ"
707
+ ]
708
+ },
709
+ {
710
+ "name": "I with macron",
711
+ "char": "Ī",
712
+ "codes": [
713
+ "Ī"
714
+ ]
715
+ },
716
+ {
717
+ "name": "i with macron",
718
+ "char": "ī",
719
+ "codes": [
720
+ "ī"
721
+ ]
722
+ },
723
+ {
724
+ "name": "I with ogonek",
725
+ "char": "Į",
726
+ "codes": [
727
+ "Į"
728
+ ]
729
+ },
730
+ {
731
+ "name": "i with ogonek",
732
+ "char": "į",
733
+ "codes": [
734
+ "į"
735
+ ]
736
+ },
737
+ {
738
+ "name": "I with dot",
739
+ "char": "İ",
740
+ "codes": [
741
+ "İ"
742
+ ]
743
+ },
744
+ {
745
+ "name": "Dotless i",
746
+ "char": "ı",
747
+ "codes": [
748
+ "ı"
749
+ ]
750
+ },
751
+ {
752
+ "name": "IJ ligature",
753
+ "char": "IJ",
754
+ "codes": [
755
+ "IJ"
756
+ ]
757
+ },
758
+ {
759
+ "name": "ij ligatureme",
760
+ "char": "ij",
761
+ "codes": [
762
+ "ij"
763
+ ]
764
+ },
765
+ {
766
+ "name": "J with circumflex",
767
+ "char": "Ĵ",
768
+ "codes": [
769
+ "Ĵ"
770
+ ]
771
+ },
772
+ {
773
+ "name": "j with circumflex",
774
+ "char": "ĵ",
775
+ "codes": [
776
+ "ĵ"
777
+ ]
778
+ },
779
+ {
780
+ "name": "K with cedilla",
781
+ "char": "Ķ",
782
+ "codes": [
783
+ "Ķ"
784
+ ]
785
+ },
786
+ {
787
+ "name": "k with cedilla",
788
+ "char": "ķ",
789
+ "codes": [
790
+ "ķ"
791
+ ]
792
+ },
793
+ {
794
+ "name": "Small letter kra",
795
+ "char": "ĸ",
796
+ "codes": [
797
+ "ĸ"
798
+ ]
799
+ },
800
+ {
801
+ "name": "L with acute",
802
+ "char": "Ĺ",
803
+ "codes": [
804
+ "Ĺ"
805
+ ]
806
+ },
807
+ {
808
+ "name": "l with acute",
809
+ "char": "ĺ",
810
+ "codes": [
811
+ "ĺ"
812
+ ]
813
+ },
814
+ {
815
+ "name": "L with cedilla",
816
+ "char": "Ļ",
817
+ "codes": [
818
+ "Ļ"
819
+ ]
820
+ },
821
+ {
822
+ "name": "l with cedilla",
823
+ "char": "ļ",
824
+ "codes": [
825
+ "ļ"
826
+ ]
827
+ },
828
+ {
829
+ "name": "L with caron",
830
+ "char": "Ľ",
831
+ "codes": [
832
+ "Ľ"
833
+ ]
834
+ },
835
+ {
836
+ "name": "l with caron",
837
+ "char": "ľ",
838
+ "codes": [
839
+ "ľ"
840
+ ]
841
+ },
842
+ {
843
+ "name": "L with middle dot",
844
+ "char": "Ŀ",
845
+ "codes": [
846
+ "Ŀ"
847
+ ]
848
+ },
849
+ {
850
+ "name": "l with middle dot",
851
+ "char": "ŀ",
852
+ "codes": [
853
+ "ŀ"
854
+ ]
855
+ },
856
+ {
857
+ "name": "L with stroke",
858
+ "char": "Ł",
859
+ "codes": [
860
+ "Ł"
861
+ ]
862
+ },
863
+ {
864
+ "name": "l with stroke",
865
+ "char": "ł",
866
+ "codes": [
867
+ "ł"
868
+ ]
869
+ },
870
+ {
871
+ "name": "N with acute",
872
+ "char": "Ń",
873
+ "codes": [
874
+ "Ń"
875
+ ]
876
+ },
877
+ {
878
+ "name": "n with acute",
879
+ "char": "ń",
880
+ "codes": [
881
+ "ń"
882
+ ]
883
+ },
884
+ {
885
+ "name": "N with cedilla",
886
+ "char": "Ņ",
887
+ "codes": [
888
+ "Ņ"
889
+ ]
890
+ },
891
+ {
892
+ "name": "n with cedilla",
893
+ "char": "ņ",
894
+ "codes": [
895
+ "ņ"
896
+ ]
897
+ },
898
+ {
899
+ "name": "N with caron",
900
+ "char": "Ň",
901
+ "codes": [
902
+ "Ň"
903
+ ]
904
+ },
905
+ {
906
+ "name": "n with caron",
907
+ "char": "ň",
908
+ "codes": [
909
+ "ň"
910
+ ]
911
+ },
912
+ {
913
+ "name": "N apostrophe",
914
+ "char": "ʼn",
915
+ "codes": [
916
+ "ʼn"
917
+ ]
918
+ },
919
+ {
920
+ "name": "Letter eng",
921
+ "char": "Ŋ",
922
+ "codes": [
923
+ "Ŋ"
924
+ ]
925
+ },
926
+ {
927
+ "name": "Small letter eng",
928
+ "char": "ŋ",
929
+ "codes": [
930
+ "ŋ"
931
+ ]
932
+ },
933
+ {
934
+ "name": "O with macron",
935
+ "char": "Ō",
936
+ "codes": [
937
+ "Ō"
938
+ ]
939
+ },
940
+ {
941
+ "name": "o with macron",
942
+ "char": "ō",
943
+ "codes": [
944
+ "ō"
945
+ ]
946
+ },
947
+ {
948
+ "name": "O with double acute",
949
+ "char": "Ő",
950
+ "codes": [
951
+ "Ő"
952
+ ]
953
+ },
954
+ {
955
+ "name": "o with double acute",
956
+ "char": "ő",
957
+ "codes": [
958
+ "ő"
959
+ ]
960
+ },
961
+ {
962
+ "name": "OE ligature",
963
+ "char": "Œ",
964
+ "codes": [
965
+ "Œ"
966
+ ]
967
+ },
968
+ {
969
+ "name": "oe ligature",
970
+ "char": "œ",
971
+ "codes": [
972
+ "œ"
973
+ ]
974
+ },
975
+ {
976
+ "name": "R with acute",
977
+ "char": "Ŕ",
978
+ "codes": [
979
+ "Ŕ"
980
+ ]
981
+ },
982
+ {
983
+ "name": "r with acute",
984
+ "char": "ŕ",
985
+ "codes": [
986
+ "ŕ"
987
+ ]
988
+ },
989
+ {
990
+ "name": "R with cedilla",
991
+ "char": "Ŗ",
992
+ "codes": [
993
+ "Ŗ"
994
+ ]
995
+ },
996
+ {
997
+ "name": "r with cedilla",
998
+ "char": "ŗ",
999
+ "codes": [
1000
+ "ŗ"
1001
+ ]
1002
+ },
1003
+ {
1004
+ "name": "R with caron",
1005
+ "char": "Ř",
1006
+ "codes": [
1007
+ "Ř"
1008
+ ]
1009
+ },
1010
+ {
1011
+ "name": "r with caron",
1012
+ "char": "ř",
1013
+ "codes": [
1014
+ "ř"
1015
+ ]
1016
+ },
1017
+ {
1018
+ "name": "S with acute",
1019
+ "char": "Ś",
1020
+ "codes": [
1021
+ "Ś"
1022
+ ]
1023
+ },
1024
+ {
1025
+ "name": "s with acute",
1026
+ "char": "ś",
1027
+ "codes": [
1028
+ "ś"
1029
+ ]
1030
+ },
1031
+ {
1032
+ "name": "S with circumflex",
1033
+ "char": "Ŝ",
1034
+ "codes": [
1035
+ "Ŝ"
1036
+ ]
1037
+ },
1038
+ {
1039
+ "name": "s with circumflex",
1040
+ "char": "ŝ",
1041
+ "codes": [
1042
+ "ŝ"
1043
+ ]
1044
+ },
1045
+ {
1046
+ "name": "S with cedilla",
1047
+ "char": "Ş",
1048
+ "codes": [
1049
+ "Ş"
1050
+ ]
1051
+ },
1052
+ {
1053
+ "name": "s with cedilla",
1054
+ "char": "ş",
1055
+ "codes": [
1056
+ "ş"
1057
+ ]
1058
+ },
1059
+ {
1060
+ "name": "S with caron",
1061
+ "char": "Š",
1062
+ "codes": [
1063
+ "Š"
1064
+ ]
1065
+ },
1066
+ {
1067
+ "name": "s with caron",
1068
+ "char": "š",
1069
+ "codes": [
1070
+ "š"
1071
+ ]
1072
+ },
1073
+ {
1074
+ "name": "T with cedilla",
1075
+ "char": "Ţ",
1076
+ "codes": [
1077
+ "Ţ"
1078
+ ]
1079
+ },
1080
+ {
1081
+ "name": "t with cedilla",
1082
+ "char": "ţ",
1083
+ "codes": [
1084
+ "ţ"
1085
+ ]
1086
+ },
1087
+ {
1088
+ "name": "T with caron",
1089
+ "char": "Ť",
1090
+ "codes": [
1091
+ "Ť"
1092
+ ]
1093
+ },
1094
+ {
1095
+ "name": "t with caron",
1096
+ "char": "ť",
1097
+ "codes": [
1098
+ "ť"
1099
+ ]
1100
+ },
1101
+ {
1102
+ "name": "T with stroke",
1103
+ "char": "Ŧ",
1104
+ "codes": [
1105
+ "Ŧ"
1106
+ ]
1107
+ },
1108
+ {
1109
+ "name": "t with stroke",
1110
+ "char": "ŧ",
1111
+ "codes": [
1112
+ "ŧ"
1113
+ ]
1114
+ },
1115
+ {
1116
+ "name": "U with tilde",
1117
+ "char": "Ũ",
1118
+ "codes": [
1119
+ "Ũ"
1120
+ ]
1121
+ },
1122
+ {
1123
+ "name": "u with tilde",
1124
+ "char": "ũ",
1125
+ "codes": [
1126
+ "ũ"
1127
+ ]
1128
+ },
1129
+ {
1130
+ "name": "U with macron",
1131
+ "char": "Ū",
1132
+ "codes": [
1133
+ "Ū"
1134
+ ]
1135
+ },
1136
+ {
1137
+ "name": "u with macron",
1138
+ "char": "ū",
1139
+ "codes": [
1140
+ "ū"
1141
+ ]
1142
+ },
1143
+ {
1144
+ "name": "U with breve",
1145
+ "char": "Ŭ",
1146
+ "codes": [
1147
+ "Ŭ"
1148
+ ]
1149
+ },
1150
+ {
1151
+ "name": "u with breve",
1152
+ "char": "ŭ",
1153
+ "codes": [
1154
+ "ŭ"
1155
+ ]
1156
+ },
1157
+ {
1158
+ "name": "U with ring",
1159
+ "char": "Ů",
1160
+ "codes": [
1161
+ "Ů"
1162
+ ]
1163
+ },
1164
+ {
1165
+ "name": "u with ring",
1166
+ "char": "ů",
1167
+ "codes": [
1168
+ "ů"
1169
+ ]
1170
+ },
1171
+ {
1172
+ "name": "U with double acute",
1173
+ "char": "Ű",
1174
+ "codes": [
1175
+ "Ű"
1176
+ ]
1177
+ },
1178
+ {
1179
+ "name": "u with double acute",
1180
+ "char": "ű",
1181
+ "codes": [
1182
+ "ű"
1183
+ ]
1184
+ },
1185
+ {
1186
+ "name": "U with ogonek",
1187
+ "char": "Ų",
1188
+ "codes": [
1189
+ "Ų"
1190
+ ]
1191
+ },
1192
+ {
1193
+ "name": "u with ogonek",
1194
+ "char": "ų",
1195
+ "codes": [
1196
+ "ų"
1197
+ ]
1198
+ },
1199
+ {
1200
+ "name": "W with circumflex",
1201
+ "char": "Ŵ",
1202
+ "codes": [
1203
+ "Ŵ"
1204
+ ]
1205
+ },
1206
+ {
1207
+ "name": "w with circumflex",
1208
+ "char": "ŵ",
1209
+ "codes": [
1210
+ "ŵ"
1211
+ ]
1212
+ },
1213
+ {
1214
+ "name": "Y with circumflex",
1215
+ "char": "Ŷ",
1216
+ "codes": [
1217
+ "Ŷ"
1218
+ ]
1219
+ },
1220
+ {
1221
+ "name": "y with circumflex",
1222
+ "char": "ŷ",
1223
+ "codes": [
1224
+ "ŷ"
1225
+ ]
1226
+ },
1227
+ {
1228
+ "name": "Y with diaeresis",
1229
+ "char": "Ÿ",
1230
+ "codes": [
1231
+ "Ÿ"
1232
+ ]
1233
+ },
1234
+ {
1235
+ "name": "Z with acute",
1236
+ "char": "Ź",
1237
+ "codes": [
1238
+ "Ź"
1239
+ ]
1240
+ },
1241
+ {
1242
+ "name": "z with acute",
1243
+ "char": "ź",
1244
+ "codes": [
1245
+ "ź"
1246
+ ]
1247
+ },
1248
+ {
1249
+ "name": "Z with dot",
1250
+ "char": "Ż",
1251
+ "codes": [
1252
+ "Ż"
1253
+ ]
1254
+ },
1255
+ {
1256
+ "name": "z with dot",
1257
+ "char": "ż",
1258
+ "codes": [
1259
+ "ż"
1260
+ ]
1261
+ },
1262
+ {
1263
+ "name": "Z with caron",
1264
+ "char": "Ž",
1265
+ "codes": [
1266
+ "Ž"
1267
+ ]
1268
+ },
1269
+ {
1270
+ "name": "z with caron",
1271
+ "char": "ž",
1272
+ "codes": [
1273
+ "ž"
1274
+ ]
1275
+ },
1276
+ {
1277
+ "name": "f with hook",
1278
+ "char": "ƒ",
1279
+ "codes": [
1280
+ "ƒ"
1281
+ ]
1282
+ },
1283
+ {
1284
+ "name": "Z with stroke",
1285
+ "char": "Ƶ",
1286
+ "codes": [
1287
+ "Ƶ"
1288
+ ]
1289
+ },
1290
+ {
1291
+ "name": "g with acute",
1292
+ "char": "ǵ",
1293
+ "codes": [
1294
+ "ǵ"
1295
+ ]
1296
+ },
1297
+ {
1298
+ "name": "Dotless j",
1299
+ "char": "ȷ",
1300
+ "codes": [
1301
+ "ȷ"
1302
+ ]
1303
+ },
1304
+ {
1305
+ "name": "Angstrom sign",
1306
+ "char": "Å",
1307
+ "codes": [
1308
+ "Å"
1309
+ ]
1310
+ }
1311
+ ]