-
Notifications
You must be signed in to change notification settings - Fork 17
/
html.jsf
1348 lines (1287 loc) · 25.2 KB
/
html.jsf
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
# JOE syntax highlight file for HTML
#
# Note:
# * <script>..</script> and <style>..</style>
# blocks are assumed to be html-encoded, not raw.
# To make them raw, you should enclose them within <!-- -->.
#
# * "#" and "+" are lited as mistakes in unquoted tag values,
# although there exist (broken) programs that generate them.
#
# * Recognizes html-entities and lites mistakes in them.
#
# * SGML comments are parsed in the SGML way. This means there
# must be an even amount of "--" markers within the tag.
#
# * Recognizes 1018 different named entities. The list has been
# copied from some version of Lynx. Most browsers don't recognize
# that many.
#
# Todo:
# * tag name recognition
# * tag parameter name recognition
# * inline stylesheet and javascript highlighting
# (hard to do fool-proof, because the value may be entity-encoded).
#
# Colours
=Background
=Text
=TagEdge green
=TagName green #cyan
=TagParam #green
=TagDelim #bold green
=TagValue cyan
=TagEntity bold blue
=SGMLtag magenta
=XML_pi yellow
=Entity bold blue
=Mystery bold yellow bg_red inverse
# Call HTML highlighter subroutine
:first Background
* call_failed noeat call=.html()
:call_failed Mystery
* call_failed
#
# HTML highlighter as a subroutine
#
.subr html
:reset Background
* idle noeat
.ifdef mason
"%" reset call=perl.perl(mason_line)
.endif
# Rules
:idle Background
* idle
"\n" reset
"<" tag_begin recolor=-1
"&" idle call=.entity() recolor=-1
:mistake_idle Mystery
* idle noeat
# Tags
:tag_begin TagEdge
* tag_name_first buffer noeat recolor=-1
"/" tag_name_first buffer
.ifdef mason
"&" rtn_php call=perl.perl(mason_block)
.endif
"!" sgml_tag recolor=-2
.ifdef php
"?%" rtn_php call=php.php()
.else
"?" xml_pi recolor=-2
.endif
.ifdef erb
"%" maybe_erb_eq
.endif
# this state allows php and perl to recolor the ?> %> or &> properly.
:rtn_php TagEdge
* idle noeat
:maybe_erb_eq TagEdge
* rtn_php noeat call=ruby.ruby(erb)
"=" rtn_php call=ruby.ruby(erb)
:tag_name_first Mystery
* tag_idle noeat
"-A-Za-z0-9._:" tag_name recolor=-1
:tag_name TagName
* tag_idle noeat strings
"script" stag_enter_idle
"style" ytag_enter_idle
done
"-A-Za-z0-9._:" tag_name
:tag_idle Background
* mistake_tag recolor=-1
"<" tag_maybe_php recolor=-1
" \t\n" tag_idle
"/" tag_end recolor=-1
">" tag_end noeat recolor=-1
"-A-Za-z0-9._:" tag_param noeat recolor=-1
:tag_maybe_php Mystery
* tag_idle
"?" tag_call_php recolor=-2
:tag_call_php TagEdge
* rtn_php_tag noeat call=php.php()
:rtn_php_tag TagEdge
* tag_idle noeat
:tag_param TagParam
* tag_idle noeat recolor=-1
"-A-Za-z0-9._:" tag_param
"=" tag_delim recolor=-1
:tag_delim TagDelim
* mistake_tag noeat recolor=-1
"\"" tag_idle call=.tag_value_quoted(dquote) recolor=-1
"'" tag_idle call=.tag_value_quoted(squote) recolor=-1
"-A-Za-z0-9._:" tag_value noeat recolor=-1
:tag_value TagValue
* tag_idle noeat recolor=-1
"-A-Za-z0-9._:" tag_value
:tag_end TagEdge
* idle
:mistake_tag Mystery
* tag_idle noeat
# We're about to entry a script...
:stag_enter_idle TagName
* stag_idle noeat
:stag_idle Background
* smistake_tag recolor=-1
" \t\n" stag_idle
"/" stag_end recolor=-1
">" stag_end noeat recolor=-1
"-A-Za-z0-9._:" stag_param noeat recolor=-1
:stag_param TagParam
* stag_idle noeat recolor=-1
"-A-Za-z0-9._:" stag_param
"=" stag_delim recolor=-1
:stag_delim TagDelim
* smistake_tag noeat recolor=-1
"\"" stag_idle call=.tag_value_quoted(dquote) recolor=-1
"'" stag_idle call=.tag_value_quoted(squote) recolor=-1
"-A-Za-z0-9._:" stag_value noeat recolor=-1
:stag_value TagValue
* stag_idle noeat recolor=-1
"-A-Za-z0-9._:" stag_value
:stag_end TagEdge
.ifdef php
* tag_begin call=js.js(php)
.else
* tag_begin call=js.js(html)
.endif
:stag_done TagEdge
* tag_name_first buffer noeat
:smistake_tag Mystery
* stag_idle noeat
# We're about to entry a script...
:ytag_enter_idle TagName
* ytag_idle noeat
:ytag_idle Background
* ymistake_tag recolor=-1
" \t\n" ytag_idle
"/" ytag_end recolor=-1
">" ytag_end noeat recolor=-1
"-A-Za-z0-9._:" ytag_param noeat recolor=-1
:ytag_param TagParam
* ytag_idle noeat recolor=-1
"-A-Za-z0-9._:" ytag_param
"=" ytag_delim recolor=-1
:ytag_delim TagDelim
* ymistake_tag noeat recolor=-1
"\"" ytag_idle call=.tag_value_quoted(dquote) recolor=-1
"'" ytag_idle call=.tag_value_quoted(squote) recolor=-1
"-A-Za-z0-9._:" ytag_value noeat recolor=-1
:ytag_value TagValue
* ytag_idle noeat recolor=-1
"-A-Za-z0-9._:" ytag_value
:ytag_end TagEdge
.ifdef php
* tag_begin call=css.css(php)
.else
* tag_begin call=css.css()
.endif
:ytag_done TagEdge
* tag_name_first buffer noeat
:ymistake_tag Mystery
* ytag_idle noeat
# SGML and comments
:sgml_tag SGMLtag
* sgml_tag
"-" sgml_tag_maybe_comment
">" sgml_end noeat recolor=-1
:sgml_tag_maybe_comment SGMLtag
* sgml_tag
"-" sgml_tag_comment
:sgml_tag_comment SGMLtag
* sgml_tag_comment
"-" sgml_tag_maybe_comment_end
:sgml_tag_maybe_comment_end SGMLtag
* sgml_tag_comment
"-" sgml_tag
:sgml_end SGMLtag
* idle
# XML processing info
:xml_pi XML_pi
* xml_pi
"?" xml_pi_maybe_end
:xml_pi_maybe_end XML_pi
* xml_pi
"?" xml_pi_maybe_end
">" xml_pi_end noeat recolor=-1
:xml_pi_end XML_pi
* idle
.end
#
# Quoted string tag values
#
.subr tag_value_quoted
:tag_value_quoted TagValue
* tag_value_quoted
.ifdef dquote
"\"" tag_value_quoted return
.endif
.ifdef squote
"'" tag_value_quoted return
.endif
"<" tag_value_maybe_php
:tag_value_maybe_php TagValue
* tag_value_quoted noeat
"?" tag_value_call_php recolor=-2
:tag_value_call_php TagEdge
* tag_value_rtn_php noeat call=php.php()
:tag_value_rtn_php TagEdge
* tag_value_quoted noeat
# Too many non-html things can be in quotes to do this...
# "&" tag_value_quoted call=.entity() recolor=-1
:mistake_tag_value Mystery
* tag_value_quoted noeat
.end
#
# Entity parser
#
.subr entity
# Entities within plain content
:entity Entity
* entity_name noeat buffer recolor=-1
"#" entity_numeric_begin
:entity_numeric_begin Entity
* entity_numeric noeat
"x" entity_hex
:entity_numeric Entity
* mistake_idle noeat recolor=-1
"0-9" entity_numeric
";" entity_end noeat recolor=-1
:entity_hex Entity
* mistake_idle noeat recolor=-1
"0-9a-fA-F" entity_hex
";" entity_end noeat recolor=-1
:entity_end Entity
* entity return
:entity_name Mystery
* mistake_idle noeat recolor=-1 strings
"AElig" entity_ok
"Aacgr" entity_ok
"Aacute" entity_ok
"Abreve" entity_ok
"Acirc" entity_ok
"Acy" entity_ok
"Agr" entity_ok
"Agrave" entity_ok
"Alpha" entity_ok
"Amacr" entity_ok
"Aogon" entity_ok
"Aring" entity_ok
"Atilde" entity_ok
"Auml" entity_ok
"Barwed" entity_ok
"Bcy" entity_ok
"Beta" entity_ok
"Bgr" entity_ok
"CHcy" entity_ok
"Cacute" entity_ok
"Cap" entity_ok
"Ccaron" entity_ok
"Ccedil" entity_ok
"Ccirc" entity_ok
"Cdot" entity_ok
"Chi" entity_ok
"Cup" entity_ok
"DJcy" entity_ok
"DScy" entity_ok
"DZcy" entity_ok
"Dagger" entity_ok
"Dcaron" entity_ok
"Dcy" entity_ok
"Delta" entity_ok
"Dgr" entity_ok
"Dot" entity_ok
"DotDot" entity_ok
"Dstrok" entity_ok
"EEacgr" entity_ok
"EEgr" entity_ok
"ENG" entity_ok
"ETH" entity_ok
"Eacgr" entity_ok
"Eacute" entity_ok
"Ecaron" entity_ok
"Ecirc" entity_ok
"Ecy" entity_ok
"Edot" entity_ok
"Egr" entity_ok
"Egrave" entity_ok
"Emacr" entity_ok
"Eogon" entity_ok
"Epsilon" entity_ok
"Eta" entity_ok
"Euml" entity_ok
"Fcy" entity_ok
"GJcy" entity_ok
"Gamma" entity_ok
"Gbreve" entity_ok
"Gcedil" entity_ok
"Gcirc" entity_ok
"Gcy" entity_ok
"Gdot" entity_ok
"Gg" entity_ok
"Ggr" entity_ok
"Gt" entity_ok
"HARDcy" entity_ok
"Hcirc" entity_ok
"Hstrok" entity_ok
"IEcy" entity_ok
"IJlig" entity_ok
"IOcy" entity_ok
"Iacgr" entity_ok
"Iacute" entity_ok
"Icirc" entity_ok
"Icy" entity_ok
"Idigr" entity_ok
"Idot" entity_ok
"Igr" entity_ok
"Igrave" entity_ok
"Imacr" entity_ok
"Iogon" entity_ok
"Iota" entity_ok
"Itilde" entity_ok
"Iukcy" entity_ok
"Iuml" entity_ok
"Jcirc" entity_ok
"Jcy" entity_ok
"Jsercy" entity_ok
"Jukcy" entity_ok
"KHcy" entity_ok
"KHgr" entity_ok
"KJcy" entity_ok
"Kappa" entity_ok
"Kcedil" entity_ok
"Kcy" entity_ok
"Kgr" entity_ok
"LJcy" entity_ok
"Lacute" entity_ok
"Lambda" entity_ok
"Larr" entity_ok
"Lcaron" entity_ok
"Lcedil" entity_ok
"Lcy" entity_ok
"Lgr" entity_ok
"Ll" entity_ok
"Lmidot" entity_ok
"Lstrok" entity_ok
"Lt" entity_ok
"Mcy" entity_ok
"Mgr" entity_ok
"Mu" entity_ok
"NJcy" entity_ok
"Nacute" entity_ok
"Ncaron" entity_ok
"Ncedil" entity_ok
"Ncy" entity_ok
"Ngr" entity_ok
"Ntilde" entity_ok
"Nu" entity_ok
"OElig" entity_ok
"OHacgr" entity_ok
"OHgr" entity_ok
"Oacgr" entity_ok
"Oacute" entity_ok
"Ocirc" entity_ok
"Ocy" entity_ok
"Odblac" entity_ok
"Ogr" entity_ok
"Ograve" entity_ok
"Omacr" entity_ok
"Omega" entity_ok
"Omicron" entity_ok
"Oslash" entity_ok
"Otilde" entity_ok
"Ouml" entity_ok
"PHgr" entity_ok
"PSgr" entity_ok
"Pcy" entity_ok
"Pgr" entity_ok
"Phi" entity_ok
"Pi" entity_ok
"Prime" entity_ok
"Psi" entity_ok
"Racute" entity_ok
"Rarr" entity_ok
"Rcaron" entity_ok
"Rcedil" entity_ok
"Rcy" entity_ok
"Rgr" entity_ok
"Rho" entity_ok
"SHCHcy" entity_ok
"SHcy" entity_ok
"SOFTcy" entity_ok
"Sacute" entity_ok
"Scaron" entity_ok
"Scedil" entity_ok
"Scirc" entity_ok
"Scy" entity_ok
"Sgr" entity_ok
"Sigma" entity_ok
"Sub" entity_ok
"Sup" entity_ok
"THORN" entity_ok
"THgr" entity_ok
"TSHcy" entity_ok
"TScy" entity_ok
"Tau" entity_ok
"Tcaron" entity_ok
"Tcedil" entity_ok
"Tcy" entity_ok
"Tgr" entity_ok
"Theta" entity_ok
"Tstrok" entity_ok
"Uacgr" entity_ok
"Uacute" entity_ok
"Ubrcy" entity_ok
"Ubreve" entity_ok
"Ucirc" entity_ok
"Ucy" entity_ok
"Udblac" entity_ok
"Udigr" entity_ok
"Ugr" entity_ok
"Ugrave" entity_ok
"Umacr" entity_ok
"Uogon" entity_ok
"Upsi" entity_ok
"Upsilon" entity_ok
"Uring" entity_ok
"Utilde" entity_ok
"Uuml" entity_ok
"Vcy" entity_ok
"Vdash" entity_ok
"Verbar" entity_ok
"Vvdash" entity_ok
"Wcirc" entity_ok
"Xgr" entity_ok
"Xi" entity_ok
"YAcy" entity_ok
"YIcy" entity_ok
"YUcy" entity_ok
"Yacute" entity_ok
"Ycirc" entity_ok
"Ycy" entity_ok
"Yuml" entity_ok
"ZHcy" entity_ok
"Zacute" entity_ok
"Zcaron" entity_ok
"Zcy" entity_ok
"Zdot" entity_ok
"Zeta" entity_ok
"Zgr" entity_ok
"aacgr" entity_ok
"aacute" entity_ok
"abreve" entity_ok
"acirc" entity_ok
"acute" entity_ok
"acy" entity_ok
"aelig" entity_ok
"agr" entity_ok
"agrave" entity_ok
"alefsym" entity_ok
"aleph" entity_ok
"alpha" entity_ok
"amacr" entity_ok
"amalg" entity_ok
"amp" entity_ok
"and" entity_ok
"ang" entity_ok
"ang90" entity_ok
"angmsd" entity_ok
"angsph" entity_ok
"angst" entity_ok
"aogon" entity_ok
"ap" entity_ok
"ape" entity_ok
"apos" entity_ok
"aring" entity_ok
"ast" entity_ok
"asymp" entity_ok
"atilde" entity_ok
"auml" entity_ok
"b.Delta" entity_ok
"b.Gamma" entity_ok
"b.Lambda" entity_ok
"b.Omega" entity_ok
"b.Phi" entity_ok
"b.Pi" entity_ok
"b.Psi" entity_ok
"b.Sigma" entity_ok
"b.Theta" entity_ok
"b.Upsi" entity_ok
"b.Xi" entity_ok
"b.alpha" entity_ok
"b.beta" entity_ok
"b.chi" entity_ok
"b.delta" entity_ok
"b.epsi" entity_ok
"b.epsis" entity_ok
"b.epsiv" entity_ok
"b.eta" entity_ok
"b.gamma" entity_ok
"b.gammad" entity_ok
"b.iota" entity_ok
"b.kappa" entity_ok
"b.kappav" entity_ok
"b.lambda" entity_ok
"b.mu" entity_ok
"b.nu" entity_ok
"b.omega" entity_ok
"b.phis" entity_ok
"b.phiv" entity_ok
"b.pi" entity_ok
"b.piv" entity_ok
"b.psi" entity_ok
"b.rho" entity_ok
"b.rhov" entity_ok
"b.sigma" entity_ok
"b.sigmav" entity_ok
"b.tau" entity_ok
"b.thetas" entity_ok
"b.thetav" entity_ok
"b.upsi" entity_ok
"b.xi" entity_ok
"b.zeta" entity_ok
"barwed" entity_ok
"bcong" entity_ok
"bcy" entity_ok
"bdquo" entity_ok
"becaus" entity_ok
"bepsi" entity_ok
"bernou" entity_ok
"beta" entity_ok
"beth" entity_ok
"bgr" entity_ok
"blank" entity_ok
"blk12" entity_ok
"blk14" entity_ok
"blk34" entity_ok
"block" entity_ok
"bottom" entity_ok
"bowtie" entity_ok
"boxDL" entity_ok
"boxDR" entity_ok
"boxDl" entity_ok
"boxDr" entity_ok
"boxH" entity_ok
"boxHD" entity_ok
"boxHU" entity_ok
"boxHd" entity_ok
"boxHu" entity_ok
"boxUL" entity_ok
"boxUR" entity_ok
"boxUl" entity_ok
"boxUr" entity_ok
"boxV" entity_ok
"boxVH" entity_ok
"boxVL" entity_ok
"boxVR" entity_ok
"boxVh" entity_ok
"boxVl" entity_ok
"boxVr" entity_ok
"boxdL" entity_ok
"boxdR" entity_ok
"boxdl" entity_ok
"boxdr" entity_ok
"boxh" entity_ok
"boxhD" entity_ok
"boxhU" entity_ok
"boxhd" entity_ok
"boxhu" entity_ok
"boxuL" entity_ok
"boxuR" entity_ok
"boxul" entity_ok
"boxur" entity_ok
"boxv" entity_ok
"boxvH" entity_ok
"boxvL" entity_ok
"boxvR" entity_ok
"boxvh" entity_ok
"boxvl" entity_ok
"boxvr" entity_ok
"bprime" entity_ok
"breve" entity_ok
"brkbar" entity_ok
"brvbar" entity_ok
"bsim" entity_ok
"bsime" entity_ok
"bsol" entity_ok
"bull" entity_ok
"bump" entity_ok
"bumpe" entity_ok
"cacute" entity_ok
"cap" entity_ok
"caret" entity_ok
"caron" entity_ok
"ccaron" entity_ok
"ccedil" entity_ok
"ccirc" entity_ok
"cdot" entity_ok
"cedil" entity_ok
"cent" entity_ok
"chcy" entity_ok
"check" entity_ok
"chi" entity_ok
"cir" entity_ok
"circ" entity_ok
"cire" entity_ok
"clubs" entity_ok
"colon" entity_ok
"colone" entity_ok
"comma" entity_ok
"commat" entity_ok
"comp" entity_ok
"compfn" entity_ok
"cong" entity_ok
"conint" entity_ok
"coprod" entity_ok
"copy" entity_ok
"copysr" entity_ok
"crarr" entity_ok
"cross" entity_ok
"cuepr" entity_ok
"cuesc" entity_ok
"cularr" entity_ok
"cup" entity_ok
"cupre" entity_ok
"curarr" entity_ok
"curren" entity_ok
"cuvee" entity_ok
"cuwed" entity_ok
"dArr" entity_ok
"dagger" entity_ok
"daleth" entity_ok
"darr" entity_ok
"darr2" entity_ok
"dash" entity_ok
"dashv" entity_ok
"dblac" entity_ok
"dcaron" entity_ok
"dcy" entity_ok
"deg" entity_ok
"delta" entity_ok
"dgr" entity_ok
"dharl" entity_ok
"dharr" entity_ok
"diam" entity_ok
"diams" entity_ok
"die" entity_ok
"divide" entity_ok
"divonx" entity_ok
"djcy" entity_ok
"dlarr" entity_ok
"dlcorn" entity_ok
"dlcrop" entity_ok
"dollar" entity_ok
"dot" entity_ok
"drarr" entity_ok
"drcorn" entity_ok
"drcrop" entity_ok
"dscy" entity_ok
"dstrok" entity_ok
"dtri" entity_ok
"dtrif" entity_ok
"dzcy" entity_ok
"eDot" entity_ok
"eacgr" entity_ok
"eacute" entity_ok
"ecaron" entity_ok
"ecir" entity_ok
"ecirc" entity_ok
"ecolon" entity_ok
"ecy" entity_ok
"edot" entity_ok
"eeacgr" entity_ok
"eegr" entity_ok
"efDot" entity_ok
"egr" entity_ok
"egrave" entity_ok
"egs" entity_ok
"ell" entity_ok
"els" entity_ok
"emacr" entity_ok
"emdash" entity_ok
"empty" entity_ok
"emsp" entity_ok
"emsp13" entity_ok
"emsp14" entity_ok
"endash" entity_ok
"eng" entity_ok
"ensp" entity_ok
"eogon" entity_ok
"epsi" entity_ok
"epsilon" entity_ok
"epsis" entity_ok
"epsiv" entity_ok
"equals" entity_ok
"equiv" entity_ok
"erDot" entity_ok
"esdot" entity_ok
"eta" entity_ok
"eth" entity_ok
"euml" entity_ok
"euro" entity_ok
"excl" entity_ok
"exist" entity_ok
"fcy" entity_ok
"female" entity_ok
"ffilig" entity_ok
"fflig" entity_ok
"ffllig" entity_ok
"filig" entity_ok
"fjlig" entity_ok
"flat" entity_ok
"fllig" entity_ok
"fnof" entity_ok
"forall" entity_ok
"fork" entity_ok
"frac12" entity_ok
"frac13" entity_ok
"frac14" entity_ok
"frac15" entity_ok
"frac16" entity_ok
"frac18" entity_ok
"frac23" entity_ok
"frac25" entity_ok
"frac34" entity_ok
"frac35" entity_ok
"frac38" entity_ok
"frac45" entity_ok
"frac56" entity_ok
"frac58" entity_ok
"frac78" entity_ok
"frasl" entity_ok
"frown" entity_ok
"gE" entity_ok
"gEl" entity_ok
"gacute" entity_ok
"gamma" entity_ok
"gammad" entity_ok
"gap" entity_ok
"gbreve" entity_ok
"gcedil" entity_ok
"gcirc" entity_ok
"gcy" entity_ok
"gdot" entity_ok
"ge" entity_ok
"gel" entity_ok
"ges" entity_ok
"ggr" entity_ok
"gimel" entity_ok
"gjcy" entity_ok
"gl" entity_ok
"gnE" entity_ok
"gnap" entity_ok
"gne" entity_ok
"gnsim" entity_ok
"grave" entity_ok
"gsdot" entity_ok
"gsim" entity_ok
"gt" entity_ok
"gvnE" entity_ok
"hArr" entity_ok
"hairsp" entity_ok
"half" entity_ok
"hamilt" entity_ok
"hardcy" entity_ok
"harr" entity_ok
"harrw" entity_ok
"hcirc" entity_ok
"hearts" entity_ok
"hellip" entity_ok
"hibar" entity_ok
"horbar" entity_ok
"hstrok" entity_ok
"hybull" entity_ok
"hyphen" entity_ok
"iacgr" entity_ok
"iacute" entity_ok
"icirc" entity_ok
"icy" entity_ok
"idiagr" entity_ok
"idigr" entity_ok
"iecy" entity_ok
"iexcl" entity_ok
"iff" entity_ok
"igr" entity_ok
"igrave" entity_ok
"ijlig" entity_ok
"imacr" entity_ok
"image" entity_ok
"incare" entity_ok
"infin" entity_ok
"inodot" entity_ok
"int" entity_ok
"intcal" entity_ok
"iocy" entity_ok
"iogon" entity_ok
"iota" entity_ok
"iquest" entity_ok
"isin" entity_ok
"itilde" entity_ok
"iukcy" entity_ok
"iuml" entity_ok
"jcirc" entity_ok
"jcy" entity_ok
"jnodot" entity_ok
"jsercy" entity_ok
"jukcy" entity_ok
"kappa" entity_ok
"kappav" entity_ok
"kcedil" entity_ok
"kcy" entity_ok
"kgr" entity_ok
"kgreen" entity_ok
"khcy" entity_ok
"khgr" entity_ok
"kjcy" entity_ok
"lAarr" entity_ok
"lArr" entity_ok
"lE" entity_ok
"lEg" entity_ok
"lacute" entity_ok
"lagran" entity_ok
"lambda" entity_ok
"lang" entity_ok
"lap" entity_ok
"laquo" entity_ok
"larr" entity_ok
"larr2" entity_ok
"larrhk" entity_ok
"larrlp" entity_ok
"larrtl" entity_ok
"lcaron" entity_ok
"lcedil" entity_ok
"lceil" entity_ok
"lcub" entity_ok
"lcy" entity_ok
"ldot" entity_ok
"ldquo" entity_ok
"ldquor" entity_ok
"le" entity_ok
"leg" entity_ok
"les" entity_ok
"lfloor" entity_ok
"lg" entity_ok
"lgr" entity_ok
"lhard" entity_ok
"lharu" entity_ok
"lhblk" entity_ok
"ljcy" entity_ok
"lmidot" entity_ok
"lnE" entity_ok
"lnap" entity_ok
"lne" entity_ok
"lnsim" entity_ok
"lowast" entity_ok
"lowbar" entity_ok
"loz" entity_ok
"loz" entity_ok
"lozf" entity_ok
"lpar" entity_ok
"lpargt" entity_ok
"lrarr2" entity_ok
"lrhar2" entity_ok
"lrm" entity_ok
"lsaquo" entity_ok
"lsh" entity_ok
"lsim" entity_ok
"lsqb" entity_ok
"lsquo" entity_ok
"lsquor" entity_ok
"lstrok" entity_ok
"lt" entity_ok
"lthree" entity_ok
"ltimes" entity_ok
"ltri" entity_ok
"ltrie" entity_ok
"ltrif" entity_ok
"lvnE" entity_ok
"macr" entity_ok
"male" entity_ok
"malt" entity_ok
"map" entity_ok
"marker" entity_ok
"mcy" entity_ok
"mdash" entity_ok
"mgr" entity_ok
"micro" entity_ok
"mid" entity_ok
"middot" entity_ok
"minus" entity_ok
"minusb" entity_ok
"mldr" entity_ok
"mnplus" entity_ok
"models" entity_ok
"mu" entity_ok
"mumap" entity_ok
"nVDash" entity_ok
"nVdash" entity_ok
"nabla" entity_ok
"nacute" entity_ok
"nap" entity_ok
"napos" entity_ok
"natur" entity_ok
"nbsp" entity_ok
"ncaron" entity_ok
"ncedil" entity_ok
"ncong" entity_ok
"ncy" entity_ok
"ndash" entity_ok
"ne" entity_ok
"nearr" entity_ok
"nequiv" entity_ok
"nexist" entity_ok
"ngE" entity_ok
"nge" entity_ok
"nges" entity_ok
"ngr" entity_ok
"ngt" entity_ok
"nhArr" entity_ok
"nharr" entity_ok
"ni" entity_ok
"njcy" entity_ok