-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdictionary.yml
9800 lines (9800 loc) · 266 KB
/
dictionary.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Schema:
# {
# plaintext: string, # could be a word or a phrase
# notes?: string,
# orthic: {
# style?: (full | ordinary | abbreviated | other),
#
# # could be missing both imagePath and notation if entry is a stub!
# imagePath?: string,
# tall?: yes | no # if image needs more space than normal
# # linespacing provides
# notation?: string,
# source: string,
#
# title?: string,
# description?: string
# }[]
# }[]
#
# Loading from manual.md table:
# python
# import yaml
# e = yaml.load(...)
# [{'plaintext': w.replace(')', '').replace(')', ''), 'notes': '', 'orthic': [{'style': 'ordinary', 'notation': w, 'source': 'manual', 'imagePath': '/assets/manual/b_' + w + '.png'}]} for w in e]
- plaintext: example entry
orthic:
- imagePath: /assets/manual/b_about.png
notation: (notation - see top of page)
source: '(manual, supplement, or other)'
style: '(full, ordinary, abbreviated, or other)'
tall: yes
notes: 'Any notes appear here.'
#region Manual: Briefs
- plaintext: about
orthic:
- imagePath: /assets/manual/b_about.png
notation: abt
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: always
orthic:
- imagePath: /assets/manual/b_always.png
notation: als
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: am
orthic:
- imagePath: /assets/manual/b_am.png
notation: m
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: "I\u2019m"
orthic:
- imagePath: "/assets/manual/b_I\u2019m.png"
notation: 'em'
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: amount
orthic:
- imagePath: /assets/manual/b_amount.png
notation: amt
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: an or a
orthic:
- imagePath: /assets/manual/b_an.png
notation: a
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: and
orthic:
- imagePath: /assets/manual/b_and.png
notation: '^a'
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: any
orthic:
- imagePath: /assets/manual/b_any.png
notation: ay
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: are
orthic:
- imagePath: /assets/manual/b_are.png
notation: ar
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: were
orthic:
- imagePath: /assets/manual/b_were.png
notation: wer
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: be
orthic:
- imagePath: /assets/manual/b_be.png
notation: b
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: been
orthic:
- imagePath: /assets/manual/b_been.png
notation: bn
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: because
orthic:
- imagePath: /assets/manual/b_because.png
notation: bec
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: between
orthic:
- imagePath: /assets/manual/b_between.png
notation: betw
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: but
orthic:
- imagePath: /assets/manual/b_but.png
notation: bt
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: can
orthic:
- imagePath: /assets/manual/b_can.png
notation: ca
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: can-be
orthic:
- imagePath: /assets/manual/b_can-be.png
notation: cab
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: child
orthic:
- imagePath: /assets/manual/b_child.png
notation: chd
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: could
orthic:
- imagePath: /assets/manual/b_could.png
notation: cd
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: do
orthic:
- imagePath: /assets/manual/b_do.png
notation: d
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: does
orthic:
- imagePath: /assets/manual/b_does.png
notation: ds
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: down
orthic:
- imagePath: /assets/manual/b_down.png
notation: dn
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: ever
orthic:
- imagePath: /assets/manual/b_ever.png
notation: ^r
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: for
orthic:
- imagePath: /assets/manual/b_for.png
notation: f
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: form
orthic:
- imagePath: /assets/manual/b_form.png
notation: fm
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: friend
orthic:
- imagePath: /assets/manual/b_friend.png
notation: fd
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: good
orthic:
- imagePath: /assets/manual/b_good.png
notation: gd
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: great
orthic:
- imagePath: /assets/manual/b_great.png
notation: grt
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: have
orthic:
- imagePath: /assets/manual/b_have.png
notation: ha
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: had
orthic:
- imagePath: /assets/manual/b_had.png
notation: hd
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: made
orthic:
- imagePath: /assets/manual/b_made.png
notation: mde
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: might
orthic:
- imagePath: /assets/manual/b_might.png
notation: mt
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: more
orthic:
- imagePath: /assets/manual/b_more.png
notation: mo
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: most
orthic:
- imagePath: /assets/manual/b_most.png
notation: mst
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: not
orthic:
- imagePath: /assets/manual/b_not.png
notation: nt
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: "can\u2019t"
orthic:
- imagePath: "/assets/manual/b_can\u2019t.png"
notation: 'cnt'
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: nothing
orthic:
- imagePath: /assets/manual/b_nothing.png
notation: nY
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
tall: true
notes: 'The `n` is on the line, not above it. Cp. "evening."'
- plaintext: of
orthic:
- imagePath: /assets/manual/b_of.png
notation: o
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: of-the
orthic:
- imagePath: /assets/manual/b_of-the.png
notation: oe
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: 'on'
orthic:
- imagePath: /assets/manual/b_on.png
notation: 'n'
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: only
orthic:
- imagePath: /assets/manual/b_only.png
notation: n_y
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: one
orthic:
- imagePath: /assets/manual/b_one.png
notation: ne
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: once
orthic:
- imagePath: /assets/manual/b_once.png
notation: nce
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: perhaps
orthic:
- imagePath: /assets/manual/b_perhaps.png
notation: ph
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: "This isn't the usual `ph` join. Instead, the `h` circles around the `p`."
- plaintext: right
orthic:
- imagePath: /assets/manual/b_right.png
notation: rt
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: round
orthic:
- imagePath: /assets/manual/b_round.png
notation: rou
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: 'This is an example of a general principle, that -ound can be written as just `ou`.'
- plaintext: self
orthic:
- imagePath: /assets/manual/b_self.png
notation: sef
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: selves
orthic:
- imagePath: /assets/manual/b_selves.png
notation: sves
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: shall
orthic:
- imagePath: /assets/manual/b_shall.png
notation: sha
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: she
orthic:
- imagePath: /assets/manual/b_she.png
notation: sh
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: should
orthic:
- imagePath: /assets/manual/b_should.png
notation: shd
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: themselves
orthic:
- imagePath: /assets/manual/b_themselves.png
notation: ^emsves
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
tall: true
notes: ''
- plaintext: therefore
orthic:
- imagePath: /assets/manual/b_therefore.png
notation: ^erf
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: thing
orthic:
- imagePath: /assets/manual/b_thing.png
notation: 'Y'
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: '**Distinguishing outline:** The curved -ing always means "thing". The raised straight -ing means "being" instead.'
- plaintext: 'throughout'
orthic:
- imagePath: "/assets/manual/b_thro\u2019out.png"
notation: '^rout'
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: to
orthic:
- imagePath: /assets/manual/b_to.png
notation: t
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: into
orthic:
- imagePath: /assets/manual/b_into.png
notation: ent
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: under
orthic:
- imagePath: /assets/manual/b_under.png
notation: u
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: week
orthic:
- imagePath: /assets/manual/b_week.png
notation: wk
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: would
orthic:
- imagePath: /assets/manual/b_would.png
notation: wd
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: which
orthic:
- imagePath: /assets/manual/b_which.png
notation: ch
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: with
orthic:
- imagePath: /assets/manual/b_with.png
notation: th
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: you
orthic:
- imagePath: /assets/manual/b_you.png
notation: 'y'
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
- plaintext: yours
orthic:
- imagePath: /assets/manual/b_yours.png
notation: yrs
source: 'Manual, "Abbreviations for Common Words"'
style: ordinary
notes: ''
#endregion
#region Manual: Endings
- notes: ''
orthic:
- imagePath: /assets/manual/D.png
notation: d
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ed
- notes: ''
orthic:
- imagePath: /assets/manual/ending_fl.png
notation: fl
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ful
- notes: ''
orthic:
- imagePath: /assets/manual/ending_hd.png
notation: hd
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -hood
- notes: 'This form is used only for the inflection -ing. So "singing" is `singY`. Use the curved form after any of `d m n t v` (mnemonic: bend away from the consonants in "unmotivated"), otherwise the straight form.'
orthic:
- imagePath: /assets/manual/ing_both.png
notation: 'Y'
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ing
- notes: ''
orthic:
- imagePath: /assets/manual/ending_t.png
notation: _t
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ight
- notes: ''
orthic:
- imagePath: /assets/manual/ending_un.png
notation: un
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ion
- notes: ''
orthic:
- imagePath: /assets/manual/ending_y.png
notation: '^y'
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ity
- notes: ''
orthic:
- imagePath: /assets/manual/ending_ls.png
notation: ls
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -less
- notes: ''
orthic:
- imagePath: /assets/manual/ending_y.png
notation: _y
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ly
- notes: ''
orthic:
- imagePath: /assets/manual/ending_mt.png
notation: mt
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ment
- notes: ''
orthic:
- imagePath: /assets/manual/ending_ns.png
notation: ns
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ness
- notes: ''
orthic:
- imagePath: /assets/manual/ending_o.png
notation: o
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ough
- notes: ''
orthic:
- imagePath: /assets/manual/ending_hr.png
notation: hr
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ther
- notes: ''
orthic:
- imagePath: /assets/manual/ending_ard.png
notation: ard
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: -ward
- notes: ''
orthic:
- imagePath: /assets/manual/night.png
notation: n_t
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: night
- notes: 'In Ordinary, the `e` is included so that the direction can show it is an `l` and not an `r`.'
orthic:
- imagePath: /assets/manual/light.png
notation: le_t
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: light
- notes: ''
orthic:
- imagePath: /assets/manual/action.png
notation: actun
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: action
- notes: ''
orthic:
- imagePath: /assets/manual/ab(il)ities.png
notation: ab^ys
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: abilities
- notes: ''
orthic:
- imagePath: /assets/manual/pec(uliar)ity.png
notation: pec^y
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: peculiarity
- notes: ''
orthic:
- imagePath: /assets/manual/thankless.png
notation: ^ankls
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: thankless
- notes: ''
orthic:
- imagePath: /assets/manual/fearlessness.png
notation: fear lsns
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: fearlessness
- notes: ''
orthic:
- imagePath: /assets/manual/nearly.png
notation: near_y
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: nearly
- notes: ''
orthic:
- imagePath: /assets/manual/easily.png
notation: easy_y
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: easily
- notes: ''
orthic:
- imagePath: /assets/manual/dailies.png
notation: day_ys
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: dailies
- notes: ''
orthic:
- imagePath: /assets/manual/comment.png
notation: comt
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: comment
- notes: ''
orthic:
- imagePath: /assets/manual/arrangement.png
notation: arngemt
source: Manual, "Abbreviate common endings"
style: ordinary
tall: true
plaintext: arrangement
- notes: ''
orthic:
- imagePath: /assets/manual/happyness.png
notation: hapyns
source: Manual, "Abbreviate common endings"
style: ordinary
tall: true
plaintext: happiness
- notes: ''
orthic:
- imagePath: /assets/manual/thoughtfulness.png
notation: ^otfl ns
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: thoughtfulness
- notes: ''
orthic:
- imagePath: /assets/manual/ought.png
notation: ot
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: ought
- notes: ''
orthic:
- imagePath: /assets/manual/brought.png
notation: brot
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: brought
- notes: ''
orthic:
- imagePath: /assets/manual/others.png
notation: ohrs
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: others
- notes: ''
orthic:
- imagePath: /assets/manual/towards.png
notation: tards
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: towards
- notes: ''
orthic:
- imagePath: "/assets/manual/us\u2019d.png"
notation: usd
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: "us\u2019d"
- notes: ''
orthic:
- imagePath: "/assets/manual/kiss\u2019d.png"
notation: kisd
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: "kiss\u2019d"
- notes: ''
orthic:
- imagePath: "/assets/manual/stirr\u2019d.png"
notation: stird
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: "stirr\u2019d"
- notes: ''
orthic:
- imagePath: /assets/manual/useful.png
notation: usefl
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: useful
- notes: ''
orthic:
- imagePath: /assets/manual/beautyfully.png
notation: beautyfly
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: beautifully
- notes: ''
orthic:
- imagePath: /assets/manual/manhood.png
notation: man hd
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: manhood
- notes: ''
orthic:
- imagePath: /assets/manual/using.png
notation: usY
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: using
- notes: ''
orthic:
- imagePath: /assets/manual/saying.png
notation: sayY
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: saying
- notes: ''
orthic:
- imagePath: /assets/manual/seeming.png
notation: seemY
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: seeming
- notes: ''
orthic:
- imagePath: /assets/manual/king.png
notation: king
source: Manual, "Abbreviate common endings"
style: ordinary
tall: true
plaintext: king
- notes: ''
orthic:
- imagePath: /assets/manual/sing.png
notation: sing
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: sing
- notes: ''
orthic:
- imagePath: /assets/manual/singing.png
notation: singY
source: Manual, "Abbreviate common endings"
style: ordinary
plaintext: singing
#endregion
#region Manual: Alphabet
- notes: ''
orthic:
- imagePath: /assets/manual/A.png
notation: a
source: Manual, "The Cursive Alphabet"
style: every
plaintext: A
- notes: ''
orthic:
- imagePath: /assets/manual/ab.png
notation: ab
source: Manual, "The Cursive Alphabet"
style: full
plaintext: ab
- notes: ''
orthic:
- imagePath: /assets/manual/act.png
notation: act
source: Manual, "The Cursive Alphabet"
style: every
plaintext: act
- notes: ''
orthic:
- imagePath: /assets/manual/B.png
notation: b
source: Manual, "The Cursive Alphabet"
style: full
plaintext: B
- notes: ''
orthic:
- imagePath: /assets/manual/bad.png
notation: bad
source: Manual, "The Cursive Alphabet"
style: full
plaintext: bad
- notes: ''
orthic:
- imagePath: /assets/manual/C.png
notation: c
source: Manual, "The Cursive Alphabet"
style: every
plaintext: C
- notes: ''
orthic:
- imagePath: /assets/manual/cabby.png
notation: cabby
source: Manual, "The Cursive Alphabet"
style: full
plaintext: cabby
- notes: ''
orthic:
- imagePath: /assets/manual/D.png
notation: d
source: Manual, "The Cursive Alphabet"
style: every
plaintext: D
- notes: ''
orthic:
- imagePath: /assets/manual/adder.png
notation: adder
source: Manual, "The Cursive Alphabet"
style: every
plaintext: adder
- notes: ''
orthic:
- imagePath: /assets/manual/E.png
notation: e
source: Manual, "The Cursive Alphabet"
style: every
plaintext: E
- notes: ''
orthic:
- imagePath: /assets/manual/fed.png
notation: fed
source: Manual, "The Cursive Alphabet"
style: full
plaintext: fed
- notes: ''
orthic:
- imagePath: /assets/manual/F.png
notation: f
source: Manual, "The Cursive Alphabet"
style: every
plaintext: F
- notes: ''
orthic:
- imagePath: /assets/manual/left.png
notation: left
source: Manual, "The Cursive Alphabet"
style: full
plaintext: left
- notes: ''
orthic:
- imagePath: /assets/manual/G.png
notation: g
source: Manual, "The Cursive Alphabet"
style: every
plaintext: G
- notes: ''
orthic:
- imagePath: /assets/manual/get.png
notation: get
source: Manual, "The Cursive Alphabet"
style: full
plaintext: get
- notes: ''
orthic:
- imagePath: /assets/manual/H.png
notation: h
source: Manual, "The Cursive Alphabet"
style: every
plaintext: H
- notes: ''
orthic:
- imagePath: /assets/manual/hit.png
notation: hit
source: Manual, "The Cursive Alphabet"
style: full
plaintext: hit
- notes: ''
orthic:
- imagePath: /assets/manual/I.png
notation: i
source: Manual, "The Cursive Alphabet"
style: every
plaintext: I
- notes: ''
orthic:
- imagePath: /assets/manual/city.png
notation: city
source: Manual, "The Cursive Alphabet"
style: full
plaintext: city
- notes: ''
orthic:
- imagePath: /assets/manual/J.png
notation: j
source: Manual, "The Cursive Alphabet"
style: every
plaintext: J
- notes: ''
orthic:
- imagePath: /assets/manual/jug.png
notation: jug
source: Manual, "The Cursive Alphabet"
style: full
plaintext: jug
- notes: ''
orthic:
- imagePath: /assets/manual/K.png
notation: k
source: Manual, "The Cursive Alphabet"
style: every
plaintext: K
- notes: ''
orthic:
- imagePath: /assets/manual/luck.png
notation: luck
source: Manual, "The Cursive Alphabet"
style: full
plaintext: luck
- notes: ''
orthic:
- imagePath: /assets/manual/L.png
notation: l
source: Manual, "The Cursive Alphabet"
style: full
plaintext: L
- notes: ''
orthic:
- imagePath: /assets/manual/like.png
notation: like
source: Manual, "The Cursive Alphabet"
style: full
plaintext: like
- notes: ''
orthic:
- imagePath: /assets/manual/M.png
notation: m
source: Manual, "The Cursive Alphabet"
style: every
plaintext: M
- notes: ''
orthic:
- imagePath: /assets/manual/melt.png
notation: melt
source: Manual, "The Cursive Alphabet"
style: full
plaintext: melt
- notes: ''
orthic:
- imagePath: /assets/manual/N.png
notation: n
source: Manual, "The Cursive Alphabet"
style: every
plaintext: N
- notes: ''
orthic:
- imagePath: /assets/manual/know.png
notation: know
source: Manual, "The Cursive Alphabet"
style: full