html-validate 7.7.1 → 7.9.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 (58) hide show
  1. package/dist/cjs/browser.d.ts +4 -2
  2. package/dist/cjs/browser.js +12 -7
  3. package/dist/cjs/browser.js.map +1 -1
  4. package/dist/cjs/cli.js +2 -0
  5. package/dist/cjs/cli.js.map +1 -1
  6. package/dist/cjs/core.d.ts +33 -67
  7. package/dist/cjs/core.js +410 -2452
  8. package/dist/cjs/core.js.map +1 -1
  9. package/dist/cjs/elements.js +4213 -0
  10. package/dist/cjs/elements.js.map +1 -0
  11. package/dist/cjs/html-validate.js +3 -0
  12. package/dist/cjs/html-validate.js.map +1 -1
  13. package/dist/cjs/index.d.ts +5 -3
  14. package/dist/cjs/index.js +12 -7
  15. package/dist/cjs/index.js.map +1 -1
  16. package/dist/cjs/jest-lib.js +1 -0
  17. package/dist/cjs/jest-lib.js.map +1 -1
  18. package/dist/cjs/jest.d.ts +1 -1
  19. package/dist/cjs/jest.js +3 -0
  20. package/dist/cjs/jest.js.map +1 -1
  21. package/dist/cjs/meta-helper.d.ts +27 -0
  22. package/dist/cjs/meta-helper.js +64 -0
  23. package/dist/cjs/meta-helper.js.map +1 -0
  24. package/dist/cjs/rules-helper.d.ts +45 -0
  25. package/dist/cjs/rules-helper.js +408 -0
  26. package/dist/cjs/rules-helper.js.map +1 -0
  27. package/dist/cjs/test-utils.d.ts +1 -1
  28. package/dist/es/browser.d.ts +4 -2
  29. package/dist/es/browser.js +4 -2
  30. package/dist/es/browser.js.map +1 -1
  31. package/dist/es/cli.js +3 -1
  32. package/dist/es/cli.js.map +1 -1
  33. package/dist/es/core.d.ts +33 -67
  34. package/dist/es/core.js +377 -2422
  35. package/dist/es/core.js.map +1 -1
  36. package/dist/es/elements.js +4210 -0
  37. package/dist/es/elements.js.map +1 -0
  38. package/dist/es/html-validate.js +4 -2
  39. package/dist/es/html-validate.js.map +1 -1
  40. package/dist/es/index.d.ts +5 -3
  41. package/dist/es/index.js +4 -2
  42. package/dist/es/index.js.map +1 -1
  43. package/dist/es/jest-lib.js +2 -1
  44. package/dist/es/jest-lib.js.map +1 -1
  45. package/dist/es/jest.d.ts +1 -1
  46. package/dist/es/jest.js +3 -1
  47. package/dist/es/jest.js.map +1 -1
  48. package/dist/es/meta-helper.d.ts +27 -0
  49. package/dist/es/meta-helper.js +61 -0
  50. package/dist/es/meta-helper.js.map +1 -0
  51. package/dist/es/rules-helper.d.ts +45 -0
  52. package/dist/es/rules-helper.js +398 -0
  53. package/dist/es/rules-helper.js.map +1 -0
  54. package/dist/es/test-utils.d.ts +1 -1
  55. package/elements/html5.js +1 -2119
  56. package/package.json +14 -13
  57. package/elements/README.md +0 -49
  58. package/elements/entities.json +0 -1724
@@ -0,0 +1,4213 @@
1
+ 'use strict';
2
+
3
+ var metaHelper = require('./meta-helper.js');
4
+ var core = require('./core.js');
5
+
6
+ /* eslint-disable sonarjs/no-duplicate-string */
7
+ const { allowedIfAttributeIsPresent, allowedIfAttributeIsAbsent, allowedIfAttributeHasValue } = metaHelper.metadataHelper;
8
+ var html5 = metaHelper.defineMetadata({
9
+ "*": {
10
+ attributes: {
11
+ contenteditable: {
12
+ omit: true,
13
+ enum: ["true", "false"],
14
+ },
15
+ contextmenu: {
16
+ deprecated: true,
17
+ },
18
+ dir: {
19
+ enum: ["ltr", "rtl", "auto"],
20
+ },
21
+ draggable: {
22
+ enum: ["true", "false"],
23
+ },
24
+ hidden: {
25
+ boolean: true,
26
+ },
27
+ id: {
28
+ enum: ["/\\S+/"],
29
+ },
30
+ tabindex: {
31
+ enum: ["/-?\\d+/"],
32
+ },
33
+ },
34
+ },
35
+ a: {
36
+ flow: true,
37
+ phrasing: true,
38
+ interactive: true,
39
+ transparent: true,
40
+ attributes: {
41
+ charset: {
42
+ deprecated: true,
43
+ },
44
+ coords: {
45
+ deprecated: true,
46
+ },
47
+ datafld: {
48
+ deprecated: true,
49
+ },
50
+ datasrc: {
51
+ deprecated: true,
52
+ },
53
+ download: {
54
+ allowed: allowedIfAttributeIsPresent("href"),
55
+ omit: true,
56
+ enum: ["/.+/"],
57
+ },
58
+ href: {
59
+ enum: ["/.*/"],
60
+ },
61
+ hreflang: {
62
+ allowed: allowedIfAttributeIsPresent("href"),
63
+ },
64
+ itemprop: {
65
+ allowed: allowedIfAttributeIsPresent("href"),
66
+ },
67
+ methods: {
68
+ deprecated: true,
69
+ },
70
+ name: {
71
+ deprecated: true,
72
+ },
73
+ ping: {
74
+ allowed: allowedIfAttributeIsPresent("href"),
75
+ },
76
+ referrerpolicy: {
77
+ allowed: allowedIfAttributeIsPresent("href"),
78
+ },
79
+ rel: {
80
+ allowed: allowedIfAttributeIsPresent("href"),
81
+ },
82
+ shape: {
83
+ deprecated: true,
84
+ },
85
+ target: {
86
+ allowed: allowedIfAttributeIsPresent("href"),
87
+ enum: ["/[^_].*/", "_blank", "_self", "_parent", "_top"],
88
+ },
89
+ type: {
90
+ allowed: allowedIfAttributeIsPresent("href"),
91
+ },
92
+ urn: {
93
+ deprecated: true,
94
+ },
95
+ },
96
+ permittedDescendants: [{ exclude: "@interactive" }],
97
+ },
98
+ abbr: {
99
+ flow: true,
100
+ phrasing: true,
101
+ permittedContent: ["@phrasing"],
102
+ },
103
+ acronym: {
104
+ deprecated: {
105
+ message: "use <abbr> instead",
106
+ documentation: "`<abbr>` can be used as a replacement.",
107
+ source: "html5",
108
+ },
109
+ },
110
+ address: {
111
+ flow: true,
112
+ permittedContent: ["@flow"],
113
+ permittedDescendants: [{ exclude: ["address", "header", "footer", "@heading", "@sectioning"] }],
114
+ },
115
+ applet: {
116
+ deprecated: {
117
+ source: "html5",
118
+ },
119
+ attributes: {
120
+ datafld: {
121
+ deprecated: true,
122
+ },
123
+ datasrc: {
124
+ deprecated: true,
125
+ },
126
+ },
127
+ },
128
+ area: {
129
+ flow: ["isDescendant", "map"],
130
+ phrasing: ["isDescendant", "map"],
131
+ void: true,
132
+ attributes: {
133
+ alt: {},
134
+ coords: {
135
+ allowed(node) {
136
+ const attr = node.getAttribute("shape");
137
+ if (attr && attr.valueMatches("default", false)) {
138
+ return `cannot be used when "shape" attribute is "default"`;
139
+ }
140
+ else {
141
+ return null;
142
+ }
143
+ },
144
+ },
145
+ download: {
146
+ allowed: allowedIfAttributeIsPresent("href"),
147
+ },
148
+ nohref: {
149
+ deprecated: true,
150
+ },
151
+ itemprop: {
152
+ allowed: allowedIfAttributeIsPresent("href"),
153
+ },
154
+ ping: {
155
+ allowed: allowedIfAttributeIsPresent("href"),
156
+ },
157
+ referrerpolicy: {
158
+ allowed: allowedIfAttributeIsPresent("href"),
159
+ },
160
+ rel: {
161
+ allowed: allowedIfAttributeIsPresent("href"),
162
+ },
163
+ shape: {
164
+ allowed(node) {
165
+ const attr = node.getAttribute("shape");
166
+ if (!attr || attr.value instanceof core.DynamicValue) {
167
+ return null;
168
+ }
169
+ const shape = attr.value || "rect";
170
+ switch (shape) {
171
+ case "circ":
172
+ case "circle":
173
+ case "poly":
174
+ case "polygon":
175
+ case "rect":
176
+ case "rectangle":
177
+ return allowedIfAttributeIsPresent("coords")(node);
178
+ }
179
+ return null;
180
+ },
181
+ enum: ["rect", "circle", "poly", "default"],
182
+ },
183
+ target: {
184
+ allowed: allowedIfAttributeIsPresent("href"),
185
+ enum: ["/[^_].*/", "_blank", "_self", "_parent", "_top"],
186
+ },
187
+ },
188
+ requiredAncestors: ["map"],
189
+ },
190
+ article: {
191
+ flow: true,
192
+ sectioning: true,
193
+ permittedContent: ["@flow"],
194
+ permittedDescendants: [{ exclude: ["main"] }],
195
+ },
196
+ aside: {
197
+ flow: true,
198
+ sectioning: true,
199
+ permittedContent: ["@flow"],
200
+ permittedDescendants: [{ exclude: ["main"] }],
201
+ },
202
+ audio: {
203
+ flow: true,
204
+ phrasing: true,
205
+ embedded: true,
206
+ interactive: ["hasAttribute", "controls"],
207
+ transparent: ["@flow"],
208
+ attributes: {
209
+ crossorigin: {
210
+ omit: true,
211
+ enum: ["anonymous", "use-credentials"],
212
+ },
213
+ itemprop: {
214
+ allowed: allowedIfAttributeIsPresent("src"),
215
+ },
216
+ preload: {
217
+ omit: true,
218
+ enum: ["none", "metadata", "auto"],
219
+ },
220
+ },
221
+ permittedContent: ["@flow", "track", "source"],
222
+ permittedDescendants: [{ exclude: ["audio", "video"] }],
223
+ permittedOrder: ["source", "track", "@flow"],
224
+ },
225
+ b: {
226
+ flow: true,
227
+ phrasing: true,
228
+ permittedContent: ["@phrasing"],
229
+ },
230
+ base: {
231
+ metadata: true,
232
+ void: true,
233
+ permittedParent: ["head"],
234
+ },
235
+ basefont: {
236
+ deprecated: {
237
+ message: "use CSS instead",
238
+ documentation: "Use CSS `font-size` property instead.",
239
+ source: "html4",
240
+ },
241
+ },
242
+ bdi: {
243
+ flow: true,
244
+ phrasing: true,
245
+ permittedContent: ["@phrasing"],
246
+ },
247
+ bdo: {
248
+ flow: true,
249
+ phrasing: true,
250
+ permittedContent: ["@phrasing"],
251
+ },
252
+ bgsound: {
253
+ deprecated: {
254
+ message: "use <audio> instead",
255
+ documentation: "Use the `<audio>` element instead but consider accessibility concerns with autoplaying sounds.",
256
+ source: "non-standard",
257
+ },
258
+ },
259
+ big: {
260
+ deprecated: {
261
+ message: "use CSS instead",
262
+ documentation: "Use CSS `font-size` property instead.",
263
+ source: "html5",
264
+ },
265
+ },
266
+ blink: {
267
+ deprecated: {
268
+ documentation: "`<blink>` has no direct replacement and blinking text is frowned upon by accessibility standards.",
269
+ source: "non-standard",
270
+ },
271
+ },
272
+ blockquote: {
273
+ flow: true,
274
+ sectioning: true,
275
+ permittedContent: ["@flow"],
276
+ },
277
+ body: {
278
+ permittedContent: ["@flow"],
279
+ permittedParent: ["html"],
280
+ attributes: {
281
+ alink: {
282
+ deprecated: true,
283
+ },
284
+ background: {
285
+ deprecated: true,
286
+ },
287
+ bgcolor: {
288
+ deprecated: true,
289
+ },
290
+ link: {
291
+ deprecated: true,
292
+ },
293
+ marginbottom: {
294
+ deprecated: true,
295
+ },
296
+ marginheight: {
297
+ deprecated: true,
298
+ },
299
+ marginleft: {
300
+ deprecated: true,
301
+ },
302
+ marginright: {
303
+ deprecated: true,
304
+ },
305
+ margintop: {
306
+ deprecated: true,
307
+ },
308
+ marginwidth: {
309
+ deprecated: true,
310
+ },
311
+ text: {
312
+ deprecated: true,
313
+ },
314
+ vlink: {
315
+ deprecated: true,
316
+ },
317
+ },
318
+ },
319
+ br: {
320
+ flow: true,
321
+ phrasing: true,
322
+ void: true,
323
+ attributes: {
324
+ clear: {
325
+ deprecated: true,
326
+ },
327
+ },
328
+ },
329
+ button: {
330
+ flow: true,
331
+ phrasing: true,
332
+ interactive: true,
333
+ labelable: true,
334
+ attributes: {
335
+ autofocus: {
336
+ boolean: true,
337
+ },
338
+ datafld: {
339
+ deprecated: true,
340
+ },
341
+ dataformatas: {
342
+ deprecated: true,
343
+ },
344
+ datasrc: {
345
+ deprecated: true,
346
+ },
347
+ disabled: {
348
+ boolean: true,
349
+ },
350
+ formaction: {
351
+ allowed: allowedIfAttributeHasValue("type", ["submit"], { defaultValue: "submit" }),
352
+ },
353
+ formenctype: {
354
+ allowed: allowedIfAttributeHasValue("type", ["submit"], { defaultValue: "submit" }),
355
+ },
356
+ formmethod: {
357
+ allowed: allowedIfAttributeHasValue("type", ["submit"], { defaultValue: "submit" }),
358
+ enum: ["get", "post", "dialog"],
359
+ },
360
+ formnovalidate: {
361
+ allowed: allowedIfAttributeHasValue("type", ["submit"], { defaultValue: "submit" }),
362
+ boolean: true,
363
+ },
364
+ formtarget: {
365
+ allowed: allowedIfAttributeHasValue("type", ["submit"], { defaultValue: "submit" }),
366
+ enum: ["/[^_].*/", "_blank", "_self", "_parent", "_top"],
367
+ },
368
+ type: {
369
+ required: true,
370
+ enum: ["submit", "reset", "button"],
371
+ },
372
+ },
373
+ permittedContent: ["@phrasing"],
374
+ permittedDescendants: [{ exclude: ["@interactive"] }],
375
+ textContent: "accessible",
376
+ },
377
+ canvas: {
378
+ flow: true,
379
+ phrasing: true,
380
+ embedded: true,
381
+ transparent: true,
382
+ },
383
+ caption: {
384
+ permittedContent: ["@flow"],
385
+ permittedDescendants: [{ exclude: ["table"] }],
386
+ attributes: {
387
+ align: {
388
+ deprecated: true,
389
+ },
390
+ },
391
+ },
392
+ center: {
393
+ deprecated: {
394
+ message: "use CSS instead",
395
+ documentation: "Use the CSS `text-align` or `margin: auto` properties instead.",
396
+ source: "html4",
397
+ },
398
+ },
399
+ cite: {
400
+ flow: true,
401
+ phrasing: true,
402
+ permittedContent: ["@phrasing"],
403
+ },
404
+ code: {
405
+ flow: true,
406
+ phrasing: true,
407
+ permittedContent: ["@phrasing"],
408
+ },
409
+ col: {
410
+ attributes: {
411
+ align: {
412
+ deprecated: true,
413
+ },
414
+ char: {
415
+ deprecated: true,
416
+ },
417
+ charoff: {
418
+ deprecated: true,
419
+ },
420
+ span: {
421
+ enum: ["/\\d+/"],
422
+ },
423
+ valign: {
424
+ deprecated: true,
425
+ },
426
+ width: {
427
+ deprecated: true,
428
+ },
429
+ },
430
+ void: true,
431
+ },
432
+ colgroup: {
433
+ implicitClosed: ["colgroup"],
434
+ attributes: {
435
+ span: {
436
+ enum: ["/\\d+/"],
437
+ },
438
+ },
439
+ permittedContent: ["col", "template"],
440
+ },
441
+ data: {
442
+ flow: true,
443
+ phrasing: true,
444
+ permittedContent: ["@phrasing"],
445
+ },
446
+ datalist: {
447
+ flow: true,
448
+ phrasing: true,
449
+ permittedContent: ["@phrasing", "option"],
450
+ },
451
+ dd: {
452
+ implicitClosed: ["dd", "dt"],
453
+ permittedContent: ["@flow"],
454
+ requiredAncestors: ["dl > dd", "dl > div > dd"],
455
+ },
456
+ del: {
457
+ flow: true,
458
+ phrasing: true,
459
+ transparent: true,
460
+ },
461
+ details: {
462
+ flow: true,
463
+ sectioning: true,
464
+ interactive: true,
465
+ attributes: {
466
+ open: {
467
+ boolean: true,
468
+ },
469
+ },
470
+ permittedContent: ["summary", "@flow"],
471
+ permittedOrder: ["summary", "@flow"],
472
+ requiredContent: ["summary"],
473
+ },
474
+ dfn: {
475
+ flow: true,
476
+ phrasing: true,
477
+ permittedContent: ["@phrasing"],
478
+ permittedDescendants: [{ exclude: ["dfn"] }],
479
+ },
480
+ dialog: {
481
+ flow: true,
482
+ permittedContent: ["@flow"],
483
+ attributes: {
484
+ open: {
485
+ boolean: true,
486
+ },
487
+ },
488
+ },
489
+ dir: {
490
+ deprecated: {
491
+ documentation: "The non-standard `<dir>` element has no direct replacement but MDN recommends replacing with `<ul>` and CSS.",
492
+ source: "html4",
493
+ },
494
+ },
495
+ div: {
496
+ flow: true,
497
+ permittedContent: ["@flow", "dt", "dd"],
498
+ attributes: {
499
+ align: {
500
+ deprecated: true,
501
+ },
502
+ datafld: {
503
+ deprecated: true,
504
+ },
505
+ dataformatas: {
506
+ deprecated: true,
507
+ },
508
+ datasrc: {
509
+ deprecated: true,
510
+ },
511
+ },
512
+ },
513
+ dl: {
514
+ flow: true,
515
+ permittedContent: ["@script", "dt", "dd", "div"],
516
+ attributes: {
517
+ compact: {
518
+ deprecated: true,
519
+ },
520
+ },
521
+ },
522
+ dt: {
523
+ implicitClosed: ["dd", "dt"],
524
+ permittedContent: ["@flow"],
525
+ permittedDescendants: [{ exclude: ["header", "footer", "@sectioning", "@heading"] }],
526
+ requiredAncestors: ["dl > dt", "dl > div > dt"],
527
+ },
528
+ em: {
529
+ flow: true,
530
+ phrasing: true,
531
+ permittedContent: ["@phrasing"],
532
+ },
533
+ embed: {
534
+ flow: true,
535
+ phrasing: true,
536
+ embedded: true,
537
+ interactive: true,
538
+ void: true,
539
+ attributes: {
540
+ src: {
541
+ required: true,
542
+ enum: ["/.+/"],
543
+ },
544
+ title: {
545
+ required: true,
546
+ },
547
+ },
548
+ },
549
+ fieldset: {
550
+ flow: true,
551
+ attributes: {
552
+ datafld: {
553
+ deprecated: true,
554
+ },
555
+ disabled: {
556
+ boolean: true,
557
+ },
558
+ },
559
+ permittedContent: ["@flow", "legend?"],
560
+ permittedOrder: ["legend", "@flow"],
561
+ },
562
+ figcaption: {
563
+ permittedContent: ["@flow"],
564
+ },
565
+ figure: {
566
+ flow: true,
567
+ permittedContent: ["@flow", "figcaption?"],
568
+ permittedOrder: ["figcaption", "@flow", "figcaption"],
569
+ },
570
+ font: {
571
+ deprecated: {
572
+ message: "use CSS instead",
573
+ documentation: "Use CSS font properties instead.",
574
+ source: "html4",
575
+ },
576
+ },
577
+ footer: {
578
+ flow: true,
579
+ permittedContent: ["@flow"],
580
+ permittedDescendants: [{ exclude: ["header", "footer", "main"] }],
581
+ },
582
+ form: {
583
+ flow: true,
584
+ form: true,
585
+ attributes: {
586
+ action: {
587
+ enum: [/^\s*\S+\s*$/],
588
+ },
589
+ accept: {
590
+ deprecated: true,
591
+ },
592
+ autocomplete: {
593
+ enum: ["on", "off"],
594
+ },
595
+ method: {
596
+ enum: ["get", "post", "dialog"],
597
+ },
598
+ novalidate: {
599
+ boolean: true,
600
+ },
601
+ target: {
602
+ enum: ["/[^_].*/", "_blank", "_self", "_parent", "_top"],
603
+ },
604
+ },
605
+ permittedContent: ["@flow"],
606
+ permittedDescendants: [{ exclude: ["@form"] }],
607
+ },
608
+ frame: {
609
+ deprecated: {
610
+ documentation: "The `<frame>` element can be replaced with the `<iframe>` element but a better solution is to remove usage of frames entirely.",
611
+ source: "html5",
612
+ },
613
+ attributes: {
614
+ datafld: {
615
+ deprecated: true,
616
+ },
617
+ datasrc: {
618
+ deprecated: true,
619
+ },
620
+ title: {
621
+ required: true,
622
+ },
623
+ },
624
+ },
625
+ frameset: {
626
+ deprecated: {
627
+ documentation: "The `<frameset>` element can be replaced with the `<iframe>` element but a better solution is to remove usage of frames entirely.",
628
+ source: "html5",
629
+ },
630
+ },
631
+ h1: {
632
+ flow: true,
633
+ heading: true,
634
+ permittedContent: ["@phrasing"],
635
+ attributes: {
636
+ align: {
637
+ deprecated: true,
638
+ },
639
+ },
640
+ },
641
+ h2: {
642
+ flow: true,
643
+ heading: true,
644
+ permittedContent: ["@phrasing"],
645
+ attributes: {
646
+ align: {
647
+ deprecated: true,
648
+ },
649
+ },
650
+ },
651
+ h3: {
652
+ flow: true,
653
+ heading: true,
654
+ permittedContent: ["@phrasing"],
655
+ attributes: {
656
+ align: {
657
+ deprecated: true,
658
+ },
659
+ },
660
+ },
661
+ h4: {
662
+ flow: true,
663
+ heading: true,
664
+ permittedContent: ["@phrasing"],
665
+ attributes: {
666
+ align: {
667
+ deprecated: true,
668
+ },
669
+ },
670
+ },
671
+ h5: {
672
+ flow: true,
673
+ heading: true,
674
+ permittedContent: ["@phrasing"],
675
+ attributes: {
676
+ align: {
677
+ deprecated: true,
678
+ },
679
+ },
680
+ },
681
+ h6: {
682
+ flow: true,
683
+ heading: true,
684
+ permittedContent: ["@phrasing"],
685
+ attributes: {
686
+ align: {
687
+ deprecated: true,
688
+ },
689
+ },
690
+ },
691
+ head: {
692
+ permittedContent: ["base?", "title?", "@meta"],
693
+ permittedParent: ["html"],
694
+ requiredContent: ["title"],
695
+ attributes: {
696
+ profile: {
697
+ deprecated: true,
698
+ },
699
+ },
700
+ },
701
+ header: {
702
+ flow: true,
703
+ permittedContent: ["@flow"],
704
+ permittedDescendants: [{ exclude: ["header", "footer", "main"] }],
705
+ },
706
+ hgroup: {
707
+ deprecated: true,
708
+ },
709
+ hr: {
710
+ flow: true,
711
+ void: true,
712
+ attributes: {
713
+ align: {
714
+ deprecated: true,
715
+ },
716
+ color: {
717
+ deprecated: true,
718
+ },
719
+ noshade: {
720
+ deprecated: true,
721
+ },
722
+ size: {
723
+ deprecated: true,
724
+ },
725
+ width: {
726
+ deprecated: true,
727
+ },
728
+ },
729
+ },
730
+ html: {
731
+ permittedContent: ["head?", "body?"],
732
+ permittedOrder: ["head", "body"],
733
+ requiredContent: ["head", "body"],
734
+ attributes: {
735
+ lang: {
736
+ required: true,
737
+ },
738
+ version: {
739
+ deprecated: true,
740
+ },
741
+ },
742
+ },
743
+ i: {
744
+ flow: true,
745
+ phrasing: true,
746
+ permittedContent: ["@phrasing"],
747
+ },
748
+ iframe: {
749
+ flow: true,
750
+ phrasing: true,
751
+ embedded: true,
752
+ interactive: true,
753
+ attributes: {
754
+ align: {
755
+ deprecated: true,
756
+ },
757
+ allowtransparency: {
758
+ deprecated: true,
759
+ },
760
+ datafld: {
761
+ deprecated: true,
762
+ },
763
+ datasrc: {
764
+ deprecated: true,
765
+ },
766
+ frameborder: {
767
+ deprecated: true,
768
+ },
769
+ hspace: {
770
+ deprecated: true,
771
+ },
772
+ marginheight: {
773
+ deprecated: true,
774
+ },
775
+ marginwidth: {
776
+ deprecated: true,
777
+ },
778
+ scrolling: {
779
+ deprecated: true,
780
+ },
781
+ src: {
782
+ enum: ["/.+/"],
783
+ },
784
+ title: {
785
+ required: true,
786
+ },
787
+ vspace: {
788
+ deprecated: true,
789
+ },
790
+ },
791
+ permittedContent: [],
792
+ },
793
+ img: {
794
+ flow: true,
795
+ phrasing: true,
796
+ embedded: true,
797
+ interactive: ["hasAttribute", "usemap"],
798
+ void: true,
799
+ attributes: {
800
+ align: {
801
+ deprecated: true,
802
+ },
803
+ border: {
804
+ deprecated: true,
805
+ },
806
+ crossorigin: {
807
+ omit: true,
808
+ enum: ["anonymous", "use-credentials"],
809
+ },
810
+ datafld: {
811
+ deprecated: true,
812
+ },
813
+ datasrc: {
814
+ deprecated: true,
815
+ },
816
+ decoding: {
817
+ enum: ["sync", "async", "auto"],
818
+ },
819
+ hspace: {
820
+ deprecated: true,
821
+ },
822
+ ismap: {
823
+ boolean: true,
824
+ },
825
+ lowsrc: {
826
+ deprecated: true,
827
+ },
828
+ name: {
829
+ deprecated: true,
830
+ },
831
+ src: {
832
+ required: true,
833
+ enum: ["/.+/"],
834
+ },
835
+ srcset: {
836
+ enum: ["/[^]+/"],
837
+ },
838
+ vspace: {
839
+ deprecated: true,
840
+ },
841
+ },
842
+ },
843
+ input: {
844
+ flow: true,
845
+ phrasing: true,
846
+ interactive: ["matchAttribute", ["type", "!=", "hidden"]],
847
+ void: true,
848
+ labelable: ["matchAttribute", ["type", "!=", "hidden"]],
849
+ attributes: {
850
+ align: {
851
+ deprecated: true,
852
+ },
853
+ autofocus: {
854
+ boolean: true,
855
+ },
856
+ capture: {
857
+ omit: true,
858
+ enum: ["environment", "user"],
859
+ },
860
+ checked: {
861
+ boolean: true,
862
+ },
863
+ datafld: {
864
+ deprecated: true,
865
+ },
866
+ dataformatas: {
867
+ deprecated: true,
868
+ },
869
+ datasrc: {
870
+ deprecated: true,
871
+ },
872
+ disabled: {
873
+ boolean: true,
874
+ },
875
+ formaction: {
876
+ allowed: allowedIfAttributeHasValue("type", ["submit", "image"], {
877
+ defaultValue: "submit",
878
+ }),
879
+ },
880
+ formenctype: {
881
+ allowed: allowedIfAttributeHasValue("type", ["submit", "image"], {
882
+ defaultValue: "submit",
883
+ }),
884
+ },
885
+ formmethod: {
886
+ allowed: allowedIfAttributeHasValue("type", ["submit", "image"], {
887
+ defaultValue: "submit",
888
+ }),
889
+ enum: ["get", "post", "dialog"],
890
+ },
891
+ formnovalidate: {
892
+ allowed: allowedIfAttributeHasValue("type", ["submit", "image"], {
893
+ defaultValue: "submit",
894
+ }),
895
+ boolean: true,
896
+ },
897
+ formtarget: {
898
+ allowed: allowedIfAttributeHasValue("type", ["submit", "image"], {
899
+ defaultValue: "submit",
900
+ }),
901
+ enum: ["/[^_].*/", "_blank", "_self", "_parent", "_top"],
902
+ },
903
+ hspace: {
904
+ deprecated: true,
905
+ },
906
+ inputmode: {
907
+ enum: ["none", "text", "decimal", "numeric", "tel", "search", "email", "url"],
908
+ },
909
+ ismap: {
910
+ deprecated: true,
911
+ },
912
+ multiple: {
913
+ boolean: true,
914
+ },
915
+ readonly: {
916
+ boolean: true,
917
+ },
918
+ required: {
919
+ boolean: true,
920
+ },
921
+ spellcheck: {
922
+ enum: ["default", "false", "true"],
923
+ },
924
+ type: {
925
+ required: true,
926
+ enum: [
927
+ "button",
928
+ "checkbox",
929
+ "color",
930
+ "date",
931
+ "datetime-local",
932
+ "email",
933
+ "file",
934
+ "hidden",
935
+ "image",
936
+ "month",
937
+ "number",
938
+ "password",
939
+ "radio",
940
+ "range",
941
+ "reset",
942
+ "search",
943
+ "submit",
944
+ "tel",
945
+ "text",
946
+ "time",
947
+ "url",
948
+ "week",
949
+ ],
950
+ },
951
+ usemap: {
952
+ deprecated: true,
953
+ },
954
+ vspace: {
955
+ deprecated: true,
956
+ },
957
+ },
958
+ },
959
+ ins: {
960
+ flow: true,
961
+ phrasing: true,
962
+ transparent: true,
963
+ },
964
+ isindex: {
965
+ deprecated: {
966
+ source: "html4",
967
+ },
968
+ },
969
+ kbd: {
970
+ flow: true,
971
+ phrasing: true,
972
+ permittedContent: ["@phrasing"],
973
+ },
974
+ keygen: {
975
+ flow: true,
976
+ phrasing: true,
977
+ interactive: true,
978
+ void: true,
979
+ labelable: true,
980
+ deprecated: true,
981
+ },
982
+ label: {
983
+ flow: true,
984
+ phrasing: true,
985
+ interactive: true,
986
+ permittedContent: ["@phrasing"],
987
+ permittedDescendants: [{ exclude: ["label"] }],
988
+ attributes: {
989
+ datafld: {
990
+ deprecated: true,
991
+ },
992
+ dataformatas: {
993
+ deprecated: true,
994
+ },
995
+ datasrc: {
996
+ deprecated: true,
997
+ },
998
+ },
999
+ },
1000
+ legend: {
1001
+ permittedContent: ["@phrasing", "@heading"],
1002
+ attributes: {
1003
+ align: {
1004
+ deprecated: true,
1005
+ },
1006
+ datafld: {
1007
+ deprecated: true,
1008
+ },
1009
+ dataformatas: {
1010
+ deprecated: true,
1011
+ },
1012
+ datasrc: {
1013
+ deprecated: true,
1014
+ },
1015
+ },
1016
+ },
1017
+ li: {
1018
+ implicitClosed: ["li"],
1019
+ permittedContent: ["@flow"],
1020
+ permittedParent: ["ul", "ol", "menu", "template"],
1021
+ attributes: {
1022
+ type: {
1023
+ deprecated: true,
1024
+ },
1025
+ },
1026
+ },
1027
+ link: {
1028
+ metadata: true,
1029
+ void: true,
1030
+ attributes: {
1031
+ as: {
1032
+ allowed: allowedIfAttributeHasValue("rel", ["preload", "modulepreload"]),
1033
+ enum: [
1034
+ "audio",
1035
+ "audioworklet",
1036
+ "document",
1037
+ "embed",
1038
+ "fetch",
1039
+ "font",
1040
+ "frame",
1041
+ "iframe",
1042
+ "image",
1043
+ "manifest",
1044
+ "object",
1045
+ "paintworklet",
1046
+ "report",
1047
+ "script",
1048
+ "serviceworker",
1049
+ "sharedworker",
1050
+ "style",
1051
+ "track",
1052
+ "video",
1053
+ "webidentity",
1054
+ "worker",
1055
+ "xslt",
1056
+ ],
1057
+ },
1058
+ blocking: {
1059
+ allowed: allowedIfAttributeHasValue("rel", ["stylesheet", "preload", "modulepreload"]),
1060
+ list: true,
1061
+ enum: ["render"],
1062
+ },
1063
+ charset: {
1064
+ deprecated: true,
1065
+ },
1066
+ crossorigin: {
1067
+ omit: true,
1068
+ enum: ["anonymous", "use-credentials"],
1069
+ },
1070
+ disabled: {
1071
+ allowed: allowedIfAttributeHasValue("rel", ["stylesheet"]),
1072
+ boolean: true,
1073
+ },
1074
+ href: {
1075
+ required: true,
1076
+ enum: ["/.+/"],
1077
+ },
1078
+ integrity: {
1079
+ allowed: allowedIfAttributeHasValue("rel", ["stylesheet", "preload", "modulepreload"]),
1080
+ enum: ["/.+/"],
1081
+ },
1082
+ methods: {
1083
+ deprecated: true,
1084
+ },
1085
+ target: {
1086
+ deprecated: true,
1087
+ },
1088
+ urn: {
1089
+ deprecated: true,
1090
+ },
1091
+ },
1092
+ },
1093
+ listing: {
1094
+ deprecated: {
1095
+ source: "html32",
1096
+ },
1097
+ },
1098
+ main: {
1099
+ flow: true,
1100
+ },
1101
+ map: {
1102
+ flow: true,
1103
+ phrasing: true,
1104
+ transparent: true,
1105
+ attributes: {
1106
+ name: {
1107
+ required: true,
1108
+ enum: ["/\\S+/"],
1109
+ },
1110
+ },
1111
+ },
1112
+ mark: {
1113
+ flow: true,
1114
+ phrasing: true,
1115
+ permittedContent: ["@phrasing"],
1116
+ },
1117
+ marquee: {
1118
+ deprecated: {
1119
+ documentation: "Marked as obsolete by both W3C and WHATWG standards but still implemented in most browsers. Animated text should be avoided for accessibility reasons as well.",
1120
+ source: "html5",
1121
+ },
1122
+ attributes: {
1123
+ datafld: {
1124
+ deprecated: true,
1125
+ },
1126
+ dataformatas: {
1127
+ deprecated: true,
1128
+ },
1129
+ datasrc: {
1130
+ deprecated: true,
1131
+ },
1132
+ },
1133
+ },
1134
+ math: {
1135
+ flow: true,
1136
+ foreign: true,
1137
+ phrasing: true,
1138
+ embedded: true,
1139
+ attributes: {
1140
+ align: {
1141
+ deprecated: true,
1142
+ },
1143
+ dir: {
1144
+ enum: ["ltr", "rtl"],
1145
+ },
1146
+ display: {
1147
+ enum: ["block", "inline"],
1148
+ },
1149
+ hspace: {
1150
+ deprecated: true,
1151
+ },
1152
+ name: {
1153
+ deprecated: true,
1154
+ },
1155
+ overflow: {
1156
+ enum: ["linebreak", "scroll", "elide", "truncate", "scale"],
1157
+ },
1158
+ vspace: {
1159
+ deprecated: true,
1160
+ },
1161
+ },
1162
+ },
1163
+ menu: {
1164
+ flow: true,
1165
+ permittedContent: ["@script", "li"],
1166
+ },
1167
+ meta: {
1168
+ flow: ["hasAttribute", "itemprop"],
1169
+ phrasing: ["hasAttribute", "itemprop"],
1170
+ metadata: true,
1171
+ void: true,
1172
+ attributes: {
1173
+ charset: {
1174
+ enum: ["utf-8"],
1175
+ },
1176
+ content: {
1177
+ allowed: allowedIfAttributeIsPresent("name", "http-equiv", "itemprop", "property"),
1178
+ },
1179
+ itemprop: {
1180
+ allowed: allowedIfAttributeIsAbsent("http-equiv", "name"),
1181
+ },
1182
+ name: {
1183
+ allowed: allowedIfAttributeIsAbsent("http-equiv", "itemprop"),
1184
+ },
1185
+ "http-equiv": {
1186
+ allowed: allowedIfAttributeIsAbsent("name", "itemprop"),
1187
+ },
1188
+ scheme: {
1189
+ deprecated: true,
1190
+ },
1191
+ },
1192
+ },
1193
+ meter: {
1194
+ flow: true,
1195
+ phrasing: true,
1196
+ labelable: true,
1197
+ permittedContent: ["@phrasing"],
1198
+ permittedDescendants: [{ exclude: "meter" }],
1199
+ },
1200
+ multicol: {
1201
+ deprecated: {
1202
+ message: "use CSS instead",
1203
+ documentation: "Use CSS columns instead.",
1204
+ source: "html5",
1205
+ },
1206
+ },
1207
+ nav: {
1208
+ flow: true,
1209
+ sectioning: true,
1210
+ permittedContent: ["@flow"],
1211
+ permittedDescendants: [{ exclude: "main" }],
1212
+ },
1213
+ nextid: {
1214
+ deprecated: {
1215
+ source: "html32",
1216
+ },
1217
+ },
1218
+ nobr: {
1219
+ deprecated: {
1220
+ message: "use CSS instead",
1221
+ documentation: "Use CSS `white-space` property instead.",
1222
+ source: "non-standard",
1223
+ },
1224
+ },
1225
+ noembed: {
1226
+ deprecated: {
1227
+ source: "non-standard",
1228
+ },
1229
+ },
1230
+ noframes: {
1231
+ deprecated: {
1232
+ source: "html5",
1233
+ },
1234
+ },
1235
+ noscript: {
1236
+ metadata: true,
1237
+ flow: true,
1238
+ phrasing: true,
1239
+ transparent: true,
1240
+ permittedDescendants: [{ exclude: "noscript" }],
1241
+ },
1242
+ object: {
1243
+ flow: true,
1244
+ phrasing: true,
1245
+ embedded: true,
1246
+ interactive: ["hasAttribute", "usemap"],
1247
+ transparent: true,
1248
+ attributes: {
1249
+ align: {
1250
+ deprecated: true,
1251
+ },
1252
+ archive: {
1253
+ deprecated: true,
1254
+ },
1255
+ blocking: {
1256
+ list: true,
1257
+ enum: ["render"],
1258
+ },
1259
+ border: {
1260
+ deprecated: true,
1261
+ },
1262
+ classid: {
1263
+ deprecated: true,
1264
+ },
1265
+ code: {
1266
+ deprecated: true,
1267
+ },
1268
+ codebase: {
1269
+ deprecated: true,
1270
+ },
1271
+ codetype: {
1272
+ deprecated: true,
1273
+ },
1274
+ data: {
1275
+ enum: ["/.+/"],
1276
+ required: true,
1277
+ },
1278
+ datafld: {
1279
+ deprecated: true,
1280
+ },
1281
+ dataformatas: {
1282
+ deprecated: true,
1283
+ },
1284
+ datasrc: {
1285
+ deprecated: true,
1286
+ },
1287
+ declare: {
1288
+ deprecated: true,
1289
+ },
1290
+ hspace: {
1291
+ deprecated: true,
1292
+ },
1293
+ name: {
1294
+ enum: ["/[^_].*/"],
1295
+ },
1296
+ standby: {
1297
+ deprecated: true,
1298
+ },
1299
+ vspace: {
1300
+ deprecated: true,
1301
+ },
1302
+ },
1303
+ permittedContent: ["param", "@flow"],
1304
+ permittedOrder: ["param", "@flow"],
1305
+ },
1306
+ ol: {
1307
+ flow: true,
1308
+ attributes: {
1309
+ compact: {
1310
+ deprecated: true,
1311
+ },
1312
+ reversed: {
1313
+ boolean: true,
1314
+ },
1315
+ type: {
1316
+ enum: ["a", "A", "i", "I", "1"],
1317
+ },
1318
+ },
1319
+ permittedContent: ["@script", "li"],
1320
+ },
1321
+ optgroup: {
1322
+ implicitClosed: ["optgroup"],
1323
+ attributes: {
1324
+ disabled: {
1325
+ boolean: true,
1326
+ },
1327
+ },
1328
+ permittedContent: ["@script", "option"],
1329
+ },
1330
+ option: {
1331
+ implicitClosed: ["option"],
1332
+ attributes: {
1333
+ dataformatas: {
1334
+ deprecated: true,
1335
+ },
1336
+ datasrc: {
1337
+ deprecated: true,
1338
+ },
1339
+ disabled: {
1340
+ boolean: true,
1341
+ },
1342
+ name: {
1343
+ deprecated: true,
1344
+ },
1345
+ selected: {
1346
+ boolean: true,
1347
+ },
1348
+ },
1349
+ permittedContent: [],
1350
+ },
1351
+ output: {
1352
+ flow: true,
1353
+ phrasing: true,
1354
+ labelable: true,
1355
+ permittedContent: ["@phrasing"],
1356
+ },
1357
+ p: {
1358
+ flow: true,
1359
+ implicitClosed: [
1360
+ "address",
1361
+ "article",
1362
+ "aside",
1363
+ "blockquote",
1364
+ "div",
1365
+ "dl",
1366
+ "fieldset",
1367
+ "footer",
1368
+ "form",
1369
+ "h1",
1370
+ "h2",
1371
+ "h3",
1372
+ "h4",
1373
+ "h5",
1374
+ "h6",
1375
+ "header",
1376
+ "hgroup",
1377
+ "hr",
1378
+ "main",
1379
+ "nav",
1380
+ "ol",
1381
+ "p",
1382
+ "pre",
1383
+ "section",
1384
+ "table",
1385
+ "ul",
1386
+ ],
1387
+ permittedContent: ["@phrasing"],
1388
+ attributes: {
1389
+ align: {
1390
+ deprecated: true,
1391
+ },
1392
+ },
1393
+ },
1394
+ param: {
1395
+ void: true,
1396
+ attributes: {
1397
+ datafld: {
1398
+ deprecated: true,
1399
+ },
1400
+ type: {
1401
+ deprecated: true,
1402
+ },
1403
+ valuetype: {
1404
+ deprecated: true,
1405
+ },
1406
+ },
1407
+ },
1408
+ picture: {
1409
+ flow: true,
1410
+ phrasing: true,
1411
+ embedded: true,
1412
+ permittedContent: ["@script", "source", "img"],
1413
+ permittedOrder: ["source", "img"],
1414
+ },
1415
+ plaintext: {
1416
+ deprecated: {
1417
+ message: "use <pre> or CSS instead",
1418
+ documentation: "Use the `<pre>` element or use CSS to set a monospace font.",
1419
+ source: "html2",
1420
+ },
1421
+ },
1422
+ pre: {
1423
+ flow: true,
1424
+ permittedContent: ["@phrasing"],
1425
+ attributes: {
1426
+ width: {
1427
+ deprecated: true,
1428
+ },
1429
+ },
1430
+ },
1431
+ progress: {
1432
+ flow: true,
1433
+ phrasing: true,
1434
+ labelable: true,
1435
+ permittedContent: ["@phrasing"],
1436
+ permittedDescendants: [{ exclude: "progress" }],
1437
+ },
1438
+ q: {
1439
+ flow: true,
1440
+ phrasing: true,
1441
+ permittedContent: ["@phrasing"],
1442
+ },
1443
+ rb: {
1444
+ implicitClosed: ["rb", "rt", "rtc", "rp"],
1445
+ permittedContent: ["@phrasing"],
1446
+ },
1447
+ rp: {
1448
+ implicitClosed: ["rb", "rt", "rtc", "rp"],
1449
+ permittedContent: ["@phrasing"],
1450
+ },
1451
+ rt: {
1452
+ implicitClosed: ["rb", "rt", "rtc", "rp"],
1453
+ permittedContent: ["@phrasing"],
1454
+ },
1455
+ rtc: {
1456
+ implicitClosed: ["rb", "rtc", "rp"],
1457
+ permittedContent: ["@phrasing", "rt"],
1458
+ },
1459
+ ruby: {
1460
+ flow: true,
1461
+ phrasing: true,
1462
+ permittedContent: ["@phrasing", "rb", "rp", "rt", "rtc"],
1463
+ },
1464
+ s: {
1465
+ flow: true,
1466
+ phrasing: true,
1467
+ permittedContent: ["@phrasing"],
1468
+ },
1469
+ samp: {
1470
+ flow: true,
1471
+ phrasing: true,
1472
+ permittedContent: ["@phrasing"],
1473
+ },
1474
+ script: {
1475
+ metadata: true,
1476
+ flow: true,
1477
+ phrasing: true,
1478
+ scriptSupporting: true,
1479
+ attributes: {
1480
+ async: {
1481
+ boolean: true,
1482
+ },
1483
+ crossorigin: {
1484
+ omit: true,
1485
+ enum: ["anonymous", "use-credentials"],
1486
+ },
1487
+ defer: {
1488
+ boolean: true,
1489
+ },
1490
+ event: {
1491
+ deprecated: true,
1492
+ },
1493
+ for: {
1494
+ deprecated: true,
1495
+ },
1496
+ integrity: {
1497
+ allowed: allowedIfAttributeIsPresent("src"),
1498
+ enum: ["/.+/"],
1499
+ },
1500
+ language: {
1501
+ deprecated: true,
1502
+ },
1503
+ nomodule: {
1504
+ boolean: true,
1505
+ },
1506
+ src: {
1507
+ enum: ["/.+/"],
1508
+ },
1509
+ },
1510
+ },
1511
+ section: {
1512
+ flow: true,
1513
+ sectioning: true,
1514
+ permittedContent: ["@flow"],
1515
+ },
1516
+ select: {
1517
+ flow: true,
1518
+ phrasing: true,
1519
+ interactive: true,
1520
+ labelable: true,
1521
+ attributes: {
1522
+ autofocus: {
1523
+ boolean: true,
1524
+ },
1525
+ disabled: {
1526
+ boolean: true,
1527
+ },
1528
+ multiple: {
1529
+ boolean: true,
1530
+ },
1531
+ required: {
1532
+ boolean: true,
1533
+ },
1534
+ size: {
1535
+ enum: ["/\\d+/"],
1536
+ },
1537
+ },
1538
+ permittedContent: ["@script", "datasrc", "datafld", "dataformatas", "option", "optgroup"],
1539
+ },
1540
+ slot: {
1541
+ flow: true,
1542
+ phrasing: true,
1543
+ transparent: true,
1544
+ },
1545
+ small: {
1546
+ flow: true,
1547
+ phrasing: true,
1548
+ permittedContent: ["@phrasing"],
1549
+ },
1550
+ source: {
1551
+ void: true,
1552
+ },
1553
+ spacer: {
1554
+ deprecated: {
1555
+ message: "use CSS instead",
1556
+ documentation: "Use CSS margin or padding instead.",
1557
+ source: "non-standard",
1558
+ },
1559
+ },
1560
+ span: {
1561
+ flow: true,
1562
+ phrasing: true,
1563
+ permittedContent: ["@phrasing"],
1564
+ attributes: {
1565
+ datafld: {
1566
+ deprecated: true,
1567
+ },
1568
+ dataformatas: {
1569
+ deprecated: true,
1570
+ },
1571
+ datasrc: {
1572
+ deprecated: true,
1573
+ },
1574
+ },
1575
+ },
1576
+ strike: {
1577
+ deprecated: {
1578
+ message: "use <del> or <s> instead",
1579
+ documentation: "Use the `<del>` or `<s>` element instead.",
1580
+ source: "html5",
1581
+ },
1582
+ },
1583
+ strong: {
1584
+ flow: true,
1585
+ phrasing: true,
1586
+ permittedContent: ["@phrasing"],
1587
+ },
1588
+ style: {
1589
+ metadata: true,
1590
+ },
1591
+ sub: {
1592
+ flow: true,
1593
+ phrasing: true,
1594
+ permittedContent: ["@phrasing"],
1595
+ },
1596
+ summary: {
1597
+ permittedContent: ["@phrasing", "@heading"],
1598
+ },
1599
+ sup: {
1600
+ flow: true,
1601
+ phrasing: true,
1602
+ permittedContent: ["@phrasing"],
1603
+ },
1604
+ svg: {
1605
+ flow: true,
1606
+ foreign: true,
1607
+ phrasing: true,
1608
+ embedded: true,
1609
+ },
1610
+ /* while not part of HTML 5 specification these two elements are handled as
1611
+ * special cases to allow them as accessible text and to avoid issues with
1612
+ * "no-unknown-elements" they are added here */
1613
+ "svg:desc": {},
1614
+ "svg:title": {},
1615
+ table: {
1616
+ flow: true,
1617
+ permittedContent: ["@script", "caption?", "colgroup", "tbody", "tfoot?", "thead?", "tr"],
1618
+ permittedOrder: ["caption", "colgroup", "thead", "tbody", "tr", "tfoot"],
1619
+ attributes: {
1620
+ align: {
1621
+ deprecated: true,
1622
+ },
1623
+ background: {
1624
+ deprecated: true,
1625
+ },
1626
+ bgcolor: {
1627
+ deprecated: true,
1628
+ },
1629
+ bordercolor: {
1630
+ deprecated: true,
1631
+ },
1632
+ cellpadding: {
1633
+ deprecated: true,
1634
+ },
1635
+ cellspacing: {
1636
+ deprecated: true,
1637
+ },
1638
+ dataformatas: {
1639
+ deprecated: true,
1640
+ },
1641
+ datapagesize: {
1642
+ deprecated: true,
1643
+ },
1644
+ datasrc: {
1645
+ deprecated: true,
1646
+ },
1647
+ frame: {
1648
+ deprecated: true,
1649
+ },
1650
+ rules: {
1651
+ deprecated: true,
1652
+ },
1653
+ summary: {
1654
+ deprecated: true,
1655
+ },
1656
+ width: {
1657
+ deprecated: true,
1658
+ },
1659
+ },
1660
+ },
1661
+ tbody: {
1662
+ implicitClosed: ["tbody", "tfoot"],
1663
+ permittedContent: ["@script", "tr"],
1664
+ attributes: {
1665
+ align: {
1666
+ deprecated: true,
1667
+ },
1668
+ background: {
1669
+ deprecated: true,
1670
+ },
1671
+ char: {
1672
+ deprecated: true,
1673
+ },
1674
+ charoff: {
1675
+ deprecated: true,
1676
+ },
1677
+ valign: {
1678
+ deprecated: true,
1679
+ },
1680
+ },
1681
+ },
1682
+ td: {
1683
+ flow: true,
1684
+ implicitClosed: ["td", "th"],
1685
+ attributes: {
1686
+ align: {
1687
+ deprecated: true,
1688
+ },
1689
+ axis: {
1690
+ deprecated: true,
1691
+ },
1692
+ background: {
1693
+ deprecated: true,
1694
+ },
1695
+ bgcolor: {
1696
+ deprecated: true,
1697
+ },
1698
+ char: {
1699
+ deprecated: true,
1700
+ },
1701
+ charoff: {
1702
+ deprecated: true,
1703
+ },
1704
+ colspan: {
1705
+ enum: ["/\\d+/"],
1706
+ },
1707
+ height: {
1708
+ deprecated: true,
1709
+ },
1710
+ nowrap: {
1711
+ deprecated: true,
1712
+ },
1713
+ rowspan: {
1714
+ enum: ["/\\d+/"],
1715
+ },
1716
+ scope: {
1717
+ deprecated: true,
1718
+ },
1719
+ valign: {
1720
+ deprecated: true,
1721
+ },
1722
+ width: {
1723
+ deprecated: true,
1724
+ },
1725
+ },
1726
+ permittedContent: ["@flow"],
1727
+ },
1728
+ template: {
1729
+ metadata: true,
1730
+ flow: true,
1731
+ phrasing: true,
1732
+ scriptSupporting: true,
1733
+ },
1734
+ textarea: {
1735
+ flow: true,
1736
+ phrasing: true,
1737
+ interactive: true,
1738
+ labelable: true,
1739
+ attributes: {
1740
+ autocomplete: {
1741
+ enum: ["on", "off"],
1742
+ },
1743
+ autofocus: {
1744
+ boolean: true,
1745
+ },
1746
+ cols: {
1747
+ enum: ["/\\d+/"],
1748
+ },
1749
+ datafld: {
1750
+ deprecated: true,
1751
+ },
1752
+ datasrc: {
1753
+ deprecated: true,
1754
+ },
1755
+ disabled: {
1756
+ boolean: true,
1757
+ },
1758
+ maxlength: {
1759
+ enum: ["/\\d+/"],
1760
+ },
1761
+ minlength: {
1762
+ enum: ["/\\d+/"],
1763
+ },
1764
+ readonly: {
1765
+ boolean: true,
1766
+ },
1767
+ required: {
1768
+ boolean: true,
1769
+ },
1770
+ rows: {
1771
+ enum: ["/\\d+/"],
1772
+ },
1773
+ spellcheck: {
1774
+ enum: ["true", "default", "false"],
1775
+ },
1776
+ wrap: {
1777
+ enum: ["hard", "soft"],
1778
+ },
1779
+ },
1780
+ permittedContent: [],
1781
+ },
1782
+ tfoot: {
1783
+ implicitClosed: ["tbody"],
1784
+ permittedContent: ["@script", "tr"],
1785
+ attributes: {
1786
+ align: {
1787
+ deprecated: true,
1788
+ },
1789
+ background: {
1790
+ deprecated: true,
1791
+ },
1792
+ char: {
1793
+ deprecated: true,
1794
+ },
1795
+ charoff: {
1796
+ deprecated: true,
1797
+ },
1798
+ valign: {
1799
+ deprecated: true,
1800
+ },
1801
+ },
1802
+ },
1803
+ th: {
1804
+ flow: true,
1805
+ implicitClosed: ["td", "th"],
1806
+ attributes: {
1807
+ align: {
1808
+ deprecated: true,
1809
+ },
1810
+ axis: {
1811
+ deprecated: true,
1812
+ },
1813
+ background: {
1814
+ deprecated: true,
1815
+ },
1816
+ bgcolor: {
1817
+ deprecated: true,
1818
+ },
1819
+ char: {
1820
+ deprecated: true,
1821
+ },
1822
+ charoff: {
1823
+ deprecated: true,
1824
+ },
1825
+ colspan: {
1826
+ enum: ["/\\d+/"],
1827
+ },
1828
+ height: {
1829
+ deprecated: true,
1830
+ },
1831
+ nowrap: {
1832
+ deprecated: true,
1833
+ },
1834
+ rowspan: {
1835
+ enum: ["/\\d+/"],
1836
+ },
1837
+ scope: {
1838
+ required: true,
1839
+ enum: ["row", "col", "rowgroup", "colgroup", "auto"],
1840
+ },
1841
+ valign: {
1842
+ deprecated: true,
1843
+ },
1844
+ width: {
1845
+ deprecated: true,
1846
+ },
1847
+ },
1848
+ permittedContent: ["@flow"],
1849
+ permittedDescendants: [{ exclude: ["header", "footer", "@sectioning", "@heading"] }],
1850
+ },
1851
+ thead: {
1852
+ implicitClosed: ["tbody", "tfoot"],
1853
+ permittedContent: ["@script", "tr"],
1854
+ attributes: {
1855
+ align: {
1856
+ deprecated: true,
1857
+ },
1858
+ background: {
1859
+ deprecated: true,
1860
+ },
1861
+ char: {
1862
+ deprecated: true,
1863
+ },
1864
+ charoff: {
1865
+ deprecated: true,
1866
+ },
1867
+ valign: {
1868
+ deprecated: true,
1869
+ },
1870
+ },
1871
+ },
1872
+ time: {
1873
+ flow: true,
1874
+ phrasing: true,
1875
+ permittedContent: ["@phrasing"],
1876
+ },
1877
+ title: {
1878
+ metadata: true,
1879
+ permittedContent: [],
1880
+ permittedParent: ["head"],
1881
+ },
1882
+ tr: {
1883
+ implicitClosed: ["tr"],
1884
+ permittedContent: ["@script", "td", "th"],
1885
+ attributes: {
1886
+ align: {
1887
+ deprecated: true,
1888
+ },
1889
+ background: {
1890
+ deprecated: true,
1891
+ },
1892
+ bgcolor: {
1893
+ deprecated: true,
1894
+ },
1895
+ char: {
1896
+ deprecated: true,
1897
+ },
1898
+ charoff: {
1899
+ deprecated: true,
1900
+ },
1901
+ valign: {
1902
+ deprecated: true,
1903
+ },
1904
+ },
1905
+ },
1906
+ track: {
1907
+ void: true,
1908
+ },
1909
+ tt: {
1910
+ deprecated: {
1911
+ documentation: "Use a more semantically correct element such as `<code>`, `<var>` or `<pre>`.",
1912
+ source: "html4",
1913
+ },
1914
+ },
1915
+ u: {
1916
+ flow: true,
1917
+ phrasing: true,
1918
+ permittedContent: ["@phrasing"],
1919
+ },
1920
+ ul: {
1921
+ flow: true,
1922
+ permittedContent: ["@script", "li"],
1923
+ attributes: {
1924
+ compact: {
1925
+ deprecated: true,
1926
+ },
1927
+ type: {
1928
+ deprecated: true,
1929
+ },
1930
+ },
1931
+ },
1932
+ var: {
1933
+ flow: true,
1934
+ phrasing: true,
1935
+ permittedContent: ["@phrasing"],
1936
+ },
1937
+ video: {
1938
+ flow: true,
1939
+ phrasing: true,
1940
+ embedded: true,
1941
+ interactive: ["hasAttribute", "controls"],
1942
+ transparent: ["@flow"],
1943
+ attributes: {
1944
+ crossorigin: {
1945
+ omit: true,
1946
+ enum: ["anonymous", "use-credentials"],
1947
+ },
1948
+ itemprop: {
1949
+ allowed: allowedIfAttributeIsPresent("src"),
1950
+ },
1951
+ preload: {
1952
+ omit: true,
1953
+ enum: ["none", "metadata", "auto"],
1954
+ },
1955
+ },
1956
+ permittedContent: ["@flow", "track", "source"],
1957
+ permittedDescendants: [{ exclude: ["audio", "video"] }],
1958
+ permittedOrder: ["source", "track", "@flow"],
1959
+ },
1960
+ wbr: {
1961
+ flow: true,
1962
+ phrasing: true,
1963
+ void: true,
1964
+ },
1965
+ xmp: {
1966
+ deprecated: {
1967
+ documentation: "Use `<pre>` or `<code>` and escape content using HTML entities instead.",
1968
+ source: "html32",
1969
+ },
1970
+ },
1971
+ });
1972
+
1973
+ const bundledElements = {
1974
+ html5,
1975
+ };
1976
+
1977
+ var entities = [
1978
+ "&Aacute",
1979
+ "&aacute",
1980
+ "&Aacute;",
1981
+ "&aacute;",
1982
+ "&Abreve;",
1983
+ "&abreve;",
1984
+ "&ac;",
1985
+ "&acd;",
1986
+ "&acE;",
1987
+ "&Acirc",
1988
+ "&acirc",
1989
+ "&Acirc;",
1990
+ "&acirc;",
1991
+ "&acute",
1992
+ "&acute;",
1993
+ "&Acy;",
1994
+ "&acy;",
1995
+ "&AElig",
1996
+ "&aelig",
1997
+ "&AElig;",
1998
+ "&aelig;",
1999
+ "&af;",
2000
+ "&Afr;",
2001
+ "&afr;",
2002
+ "&Agrave",
2003
+ "&agrave",
2004
+ "&Agrave;",
2005
+ "&agrave;",
2006
+ "&alefsym;",
2007
+ "&aleph;",
2008
+ "&Alpha;",
2009
+ "&alpha;",
2010
+ "&Amacr;",
2011
+ "&amacr;",
2012
+ "&amalg;",
2013
+ "&AMP",
2014
+ "&amp",
2015
+ "&AMP;",
2016
+ "&amp;",
2017
+ "&And;",
2018
+ "&and;",
2019
+ "&andand;",
2020
+ "&andd;",
2021
+ "&andslope;",
2022
+ "&andv;",
2023
+ "&ang;",
2024
+ "&ange;",
2025
+ "&angle;",
2026
+ "&angmsd;",
2027
+ "&angmsdaa;",
2028
+ "&angmsdab;",
2029
+ "&angmsdac;",
2030
+ "&angmsdad;",
2031
+ "&angmsdae;",
2032
+ "&angmsdaf;",
2033
+ "&angmsdag;",
2034
+ "&angmsdah;",
2035
+ "&angrt;",
2036
+ "&angrtvb;",
2037
+ "&angrtvbd;",
2038
+ "&angsph;",
2039
+ "&angst;",
2040
+ "&angzarr;",
2041
+ "&Aogon;",
2042
+ "&aogon;",
2043
+ "&Aopf;",
2044
+ "&aopf;",
2045
+ "&ap;",
2046
+ "&apacir;",
2047
+ "&apE;",
2048
+ "&ape;",
2049
+ "&apid;",
2050
+ "&apos;",
2051
+ "&ApplyFunction;",
2052
+ "&approx;",
2053
+ "&approxeq;",
2054
+ "&Aring",
2055
+ "&aring",
2056
+ "&Aring;",
2057
+ "&aring;",
2058
+ "&Ascr;",
2059
+ "&ascr;",
2060
+ "&Assign;",
2061
+ "&ast;",
2062
+ "&asymp;",
2063
+ "&asympeq;",
2064
+ "&Atilde",
2065
+ "&atilde",
2066
+ "&Atilde;",
2067
+ "&atilde;",
2068
+ "&Auml",
2069
+ "&auml",
2070
+ "&Auml;",
2071
+ "&auml;",
2072
+ "&awconint;",
2073
+ "&awint;",
2074
+ "&backcong;",
2075
+ "&backepsilon;",
2076
+ "&backprime;",
2077
+ "&backsim;",
2078
+ "&backsimeq;",
2079
+ "&Backslash;",
2080
+ "&Barv;",
2081
+ "&barvee;",
2082
+ "&Barwed;",
2083
+ "&barwed;",
2084
+ "&barwedge;",
2085
+ "&bbrk;",
2086
+ "&bbrktbrk;",
2087
+ "&bcong;",
2088
+ "&Bcy;",
2089
+ "&bcy;",
2090
+ "&bdquo;",
2091
+ "&becaus;",
2092
+ "&Because;",
2093
+ "&because;",
2094
+ "&bemptyv;",
2095
+ "&bepsi;",
2096
+ "&bernou;",
2097
+ "&Bernoullis;",
2098
+ "&Beta;",
2099
+ "&beta;",
2100
+ "&beth;",
2101
+ "&between;",
2102
+ "&Bfr;",
2103
+ "&bfr;",
2104
+ "&bigcap;",
2105
+ "&bigcirc;",
2106
+ "&bigcup;",
2107
+ "&bigodot;",
2108
+ "&bigoplus;",
2109
+ "&bigotimes;",
2110
+ "&bigsqcup;",
2111
+ "&bigstar;",
2112
+ "&bigtriangledown;",
2113
+ "&bigtriangleup;",
2114
+ "&biguplus;",
2115
+ "&bigvee;",
2116
+ "&bigwedge;",
2117
+ "&bkarow;",
2118
+ "&blacklozenge;",
2119
+ "&blacksquare;",
2120
+ "&blacktriangle;",
2121
+ "&blacktriangledown;",
2122
+ "&blacktriangleleft;",
2123
+ "&blacktriangleright;",
2124
+ "&blank;",
2125
+ "&blk12;",
2126
+ "&blk14;",
2127
+ "&blk34;",
2128
+ "&block;",
2129
+ "&bne;",
2130
+ "&bnequiv;",
2131
+ "&bNot;",
2132
+ "&bnot;",
2133
+ "&Bopf;",
2134
+ "&bopf;",
2135
+ "&bot;",
2136
+ "&bottom;",
2137
+ "&bowtie;",
2138
+ "&boxbox;",
2139
+ "&boxDL;",
2140
+ "&boxDl;",
2141
+ "&boxdL;",
2142
+ "&boxdl;",
2143
+ "&boxDR;",
2144
+ "&boxDr;",
2145
+ "&boxdR;",
2146
+ "&boxdr;",
2147
+ "&boxH;",
2148
+ "&boxh;",
2149
+ "&boxHD;",
2150
+ "&boxHd;",
2151
+ "&boxhD;",
2152
+ "&boxhd;",
2153
+ "&boxHU;",
2154
+ "&boxHu;",
2155
+ "&boxhU;",
2156
+ "&boxhu;",
2157
+ "&boxminus;",
2158
+ "&boxplus;",
2159
+ "&boxtimes;",
2160
+ "&boxUL;",
2161
+ "&boxUl;",
2162
+ "&boxuL;",
2163
+ "&boxul;",
2164
+ "&boxUR;",
2165
+ "&boxUr;",
2166
+ "&boxuR;",
2167
+ "&boxur;",
2168
+ "&boxV;",
2169
+ "&boxv;",
2170
+ "&boxVH;",
2171
+ "&boxVh;",
2172
+ "&boxvH;",
2173
+ "&boxvh;",
2174
+ "&boxVL;",
2175
+ "&boxVl;",
2176
+ "&boxvL;",
2177
+ "&boxvl;",
2178
+ "&boxVR;",
2179
+ "&boxVr;",
2180
+ "&boxvR;",
2181
+ "&boxvr;",
2182
+ "&bprime;",
2183
+ "&Breve;",
2184
+ "&breve;",
2185
+ "&brvbar",
2186
+ "&brvbar;",
2187
+ "&Bscr;",
2188
+ "&bscr;",
2189
+ "&bsemi;",
2190
+ "&bsim;",
2191
+ "&bsime;",
2192
+ "&bsol;",
2193
+ "&bsolb;",
2194
+ "&bsolhsub;",
2195
+ "&bull;",
2196
+ "&bullet;",
2197
+ "&bump;",
2198
+ "&bumpE;",
2199
+ "&bumpe;",
2200
+ "&Bumpeq;",
2201
+ "&bumpeq;",
2202
+ "&Cacute;",
2203
+ "&cacute;",
2204
+ "&Cap;",
2205
+ "&cap;",
2206
+ "&capand;",
2207
+ "&capbrcup;",
2208
+ "&capcap;",
2209
+ "&capcup;",
2210
+ "&capdot;",
2211
+ "&CapitalDifferentialD;",
2212
+ "&caps;",
2213
+ "&caret;",
2214
+ "&caron;",
2215
+ "&Cayleys;",
2216
+ "&ccaps;",
2217
+ "&Ccaron;",
2218
+ "&ccaron;",
2219
+ "&Ccedil",
2220
+ "&ccedil",
2221
+ "&Ccedil;",
2222
+ "&ccedil;",
2223
+ "&Ccirc;",
2224
+ "&ccirc;",
2225
+ "&Cconint;",
2226
+ "&ccups;",
2227
+ "&ccupssm;",
2228
+ "&Cdot;",
2229
+ "&cdot;",
2230
+ "&cedil",
2231
+ "&cedil;",
2232
+ "&Cedilla;",
2233
+ "&cemptyv;",
2234
+ "&cent",
2235
+ "&cent;",
2236
+ "&CenterDot;",
2237
+ "&centerdot;",
2238
+ "&Cfr;",
2239
+ "&cfr;",
2240
+ "&CHcy;",
2241
+ "&chcy;",
2242
+ "&check;",
2243
+ "&checkmark;",
2244
+ "&Chi;",
2245
+ "&chi;",
2246
+ "&cir;",
2247
+ "&circ;",
2248
+ "&circeq;",
2249
+ "&circlearrowleft;",
2250
+ "&circlearrowright;",
2251
+ "&circledast;",
2252
+ "&circledcirc;",
2253
+ "&circleddash;",
2254
+ "&CircleDot;",
2255
+ "&circledR;",
2256
+ "&circledS;",
2257
+ "&CircleMinus;",
2258
+ "&CirclePlus;",
2259
+ "&CircleTimes;",
2260
+ "&cirE;",
2261
+ "&cire;",
2262
+ "&cirfnint;",
2263
+ "&cirmid;",
2264
+ "&cirscir;",
2265
+ "&ClockwiseContourIntegral;",
2266
+ "&CloseCurlyDoubleQuote;",
2267
+ "&CloseCurlyQuote;",
2268
+ "&clubs;",
2269
+ "&clubsuit;",
2270
+ "&Colon;",
2271
+ "&colon;",
2272
+ "&Colone;",
2273
+ "&colone;",
2274
+ "&coloneq;",
2275
+ "&comma;",
2276
+ "&commat;",
2277
+ "&comp;",
2278
+ "&compfn;",
2279
+ "&complement;",
2280
+ "&complexes;",
2281
+ "&cong;",
2282
+ "&congdot;",
2283
+ "&Congruent;",
2284
+ "&Conint;",
2285
+ "&conint;",
2286
+ "&ContourIntegral;",
2287
+ "&Copf;",
2288
+ "&copf;",
2289
+ "&coprod;",
2290
+ "&Coproduct;",
2291
+ "&COPY",
2292
+ "&copy",
2293
+ "&COPY;",
2294
+ "&copy;",
2295
+ "&copysr;",
2296
+ "&CounterClockwiseContourIntegral;",
2297
+ "&crarr;",
2298
+ "&Cross;",
2299
+ "&cross;",
2300
+ "&Cscr;",
2301
+ "&cscr;",
2302
+ "&csub;",
2303
+ "&csube;",
2304
+ "&csup;",
2305
+ "&csupe;",
2306
+ "&ctdot;",
2307
+ "&cudarrl;",
2308
+ "&cudarrr;",
2309
+ "&cuepr;",
2310
+ "&cuesc;",
2311
+ "&cularr;",
2312
+ "&cularrp;",
2313
+ "&Cup;",
2314
+ "&cup;",
2315
+ "&cupbrcap;",
2316
+ "&CupCap;",
2317
+ "&cupcap;",
2318
+ "&cupcup;",
2319
+ "&cupdot;",
2320
+ "&cupor;",
2321
+ "&cups;",
2322
+ "&curarr;",
2323
+ "&curarrm;",
2324
+ "&curlyeqprec;",
2325
+ "&curlyeqsucc;",
2326
+ "&curlyvee;",
2327
+ "&curlywedge;",
2328
+ "&curren",
2329
+ "&curren;",
2330
+ "&curvearrowleft;",
2331
+ "&curvearrowright;",
2332
+ "&cuvee;",
2333
+ "&cuwed;",
2334
+ "&cwconint;",
2335
+ "&cwint;",
2336
+ "&cylcty;",
2337
+ "&Dagger;",
2338
+ "&dagger;",
2339
+ "&daleth;",
2340
+ "&Darr;",
2341
+ "&dArr;",
2342
+ "&darr;",
2343
+ "&dash;",
2344
+ "&Dashv;",
2345
+ "&dashv;",
2346
+ "&dbkarow;",
2347
+ "&dblac;",
2348
+ "&Dcaron;",
2349
+ "&dcaron;",
2350
+ "&Dcy;",
2351
+ "&dcy;",
2352
+ "&DD;",
2353
+ "&dd;",
2354
+ "&ddagger;",
2355
+ "&ddarr;",
2356
+ "&DDotrahd;",
2357
+ "&ddotseq;",
2358
+ "&deg",
2359
+ "&deg;",
2360
+ "&Del;",
2361
+ "&Delta;",
2362
+ "&delta;",
2363
+ "&demptyv;",
2364
+ "&dfisht;",
2365
+ "&Dfr;",
2366
+ "&dfr;",
2367
+ "&dHar;",
2368
+ "&dharl;",
2369
+ "&dharr;",
2370
+ "&DiacriticalAcute;",
2371
+ "&DiacriticalDot;",
2372
+ "&DiacriticalDoubleAcute;",
2373
+ "&DiacriticalGrave;",
2374
+ "&DiacriticalTilde;",
2375
+ "&diam;",
2376
+ "&Diamond;",
2377
+ "&diamond;",
2378
+ "&diamondsuit;",
2379
+ "&diams;",
2380
+ "&die;",
2381
+ "&DifferentialD;",
2382
+ "&digamma;",
2383
+ "&disin;",
2384
+ "&div;",
2385
+ "&divide",
2386
+ "&divide;",
2387
+ "&divideontimes;",
2388
+ "&divonx;",
2389
+ "&DJcy;",
2390
+ "&djcy;",
2391
+ "&dlcorn;",
2392
+ "&dlcrop;",
2393
+ "&dollar;",
2394
+ "&Dopf;",
2395
+ "&dopf;",
2396
+ "&Dot;",
2397
+ "&dot;",
2398
+ "&DotDot;",
2399
+ "&doteq;",
2400
+ "&doteqdot;",
2401
+ "&DotEqual;",
2402
+ "&dotminus;",
2403
+ "&dotplus;",
2404
+ "&dotsquare;",
2405
+ "&doublebarwedge;",
2406
+ "&DoubleContourIntegral;",
2407
+ "&DoubleDot;",
2408
+ "&DoubleDownArrow;",
2409
+ "&DoubleLeftArrow;",
2410
+ "&DoubleLeftRightArrow;",
2411
+ "&DoubleLeftTee;",
2412
+ "&DoubleLongLeftArrow;",
2413
+ "&DoubleLongLeftRightArrow;",
2414
+ "&DoubleLongRightArrow;",
2415
+ "&DoubleRightArrow;",
2416
+ "&DoubleRightTee;",
2417
+ "&DoubleUpArrow;",
2418
+ "&DoubleUpDownArrow;",
2419
+ "&DoubleVerticalBar;",
2420
+ "&DownArrow;",
2421
+ "&Downarrow;",
2422
+ "&downarrow;",
2423
+ "&DownArrowBar;",
2424
+ "&DownArrowUpArrow;",
2425
+ "&DownBreve;",
2426
+ "&downdownarrows;",
2427
+ "&downharpoonleft;",
2428
+ "&downharpoonright;",
2429
+ "&DownLeftRightVector;",
2430
+ "&DownLeftTeeVector;",
2431
+ "&DownLeftVector;",
2432
+ "&DownLeftVectorBar;",
2433
+ "&DownRightTeeVector;",
2434
+ "&DownRightVector;",
2435
+ "&DownRightVectorBar;",
2436
+ "&DownTee;",
2437
+ "&DownTeeArrow;",
2438
+ "&drbkarow;",
2439
+ "&drcorn;",
2440
+ "&drcrop;",
2441
+ "&Dscr;",
2442
+ "&dscr;",
2443
+ "&DScy;",
2444
+ "&dscy;",
2445
+ "&dsol;",
2446
+ "&Dstrok;",
2447
+ "&dstrok;",
2448
+ "&dtdot;",
2449
+ "&dtri;",
2450
+ "&dtrif;",
2451
+ "&duarr;",
2452
+ "&duhar;",
2453
+ "&dwangle;",
2454
+ "&DZcy;",
2455
+ "&dzcy;",
2456
+ "&dzigrarr;",
2457
+ "&Eacute",
2458
+ "&eacute",
2459
+ "&Eacute;",
2460
+ "&eacute;",
2461
+ "&easter;",
2462
+ "&Ecaron;",
2463
+ "&ecaron;",
2464
+ "&ecir;",
2465
+ "&Ecirc",
2466
+ "&ecirc",
2467
+ "&Ecirc;",
2468
+ "&ecirc;",
2469
+ "&ecolon;",
2470
+ "&Ecy;",
2471
+ "&ecy;",
2472
+ "&eDDot;",
2473
+ "&Edot;",
2474
+ "&eDot;",
2475
+ "&edot;",
2476
+ "&ee;",
2477
+ "&efDot;",
2478
+ "&Efr;",
2479
+ "&efr;",
2480
+ "&eg;",
2481
+ "&Egrave",
2482
+ "&egrave",
2483
+ "&Egrave;",
2484
+ "&egrave;",
2485
+ "&egs;",
2486
+ "&egsdot;",
2487
+ "&el;",
2488
+ "&Element;",
2489
+ "&elinters;",
2490
+ "&ell;",
2491
+ "&els;",
2492
+ "&elsdot;",
2493
+ "&Emacr;",
2494
+ "&emacr;",
2495
+ "&empty;",
2496
+ "&emptyset;",
2497
+ "&EmptySmallSquare;",
2498
+ "&emptyv;",
2499
+ "&EmptyVerySmallSquare;",
2500
+ "&emsp13;",
2501
+ "&emsp14;",
2502
+ "&emsp;",
2503
+ "&ENG;",
2504
+ "&eng;",
2505
+ "&ensp;",
2506
+ "&Eogon;",
2507
+ "&eogon;",
2508
+ "&Eopf;",
2509
+ "&eopf;",
2510
+ "&epar;",
2511
+ "&eparsl;",
2512
+ "&eplus;",
2513
+ "&epsi;",
2514
+ "&Epsilon;",
2515
+ "&epsilon;",
2516
+ "&epsiv;",
2517
+ "&eqcirc;",
2518
+ "&eqcolon;",
2519
+ "&eqsim;",
2520
+ "&eqslantgtr;",
2521
+ "&eqslantless;",
2522
+ "&Equal;",
2523
+ "&equals;",
2524
+ "&EqualTilde;",
2525
+ "&equest;",
2526
+ "&Equilibrium;",
2527
+ "&equiv;",
2528
+ "&equivDD;",
2529
+ "&eqvparsl;",
2530
+ "&erarr;",
2531
+ "&erDot;",
2532
+ "&Escr;",
2533
+ "&escr;",
2534
+ "&esdot;",
2535
+ "&Esim;",
2536
+ "&esim;",
2537
+ "&Eta;",
2538
+ "&eta;",
2539
+ "&ETH",
2540
+ "&eth",
2541
+ "&ETH;",
2542
+ "&eth;",
2543
+ "&Euml",
2544
+ "&euml",
2545
+ "&Euml;",
2546
+ "&euml;",
2547
+ "&euro;",
2548
+ "&excl;",
2549
+ "&exist;",
2550
+ "&Exists;",
2551
+ "&expectation;",
2552
+ "&ExponentialE;",
2553
+ "&exponentiale;",
2554
+ "&fallingdotseq;",
2555
+ "&Fcy;",
2556
+ "&fcy;",
2557
+ "&female;",
2558
+ "&ffilig;",
2559
+ "&fflig;",
2560
+ "&ffllig;",
2561
+ "&Ffr;",
2562
+ "&ffr;",
2563
+ "&filig;",
2564
+ "&FilledSmallSquare;",
2565
+ "&FilledVerySmallSquare;",
2566
+ "&fjlig;",
2567
+ "&flat;",
2568
+ "&fllig;",
2569
+ "&fltns;",
2570
+ "&fnof;",
2571
+ "&Fopf;",
2572
+ "&fopf;",
2573
+ "&ForAll;",
2574
+ "&forall;",
2575
+ "&fork;",
2576
+ "&forkv;",
2577
+ "&Fouriertrf;",
2578
+ "&fpartint;",
2579
+ "&frac12",
2580
+ "&frac12;",
2581
+ "&frac13;",
2582
+ "&frac14",
2583
+ "&frac14;",
2584
+ "&frac15;",
2585
+ "&frac16;",
2586
+ "&frac18;",
2587
+ "&frac23;",
2588
+ "&frac25;",
2589
+ "&frac34",
2590
+ "&frac34;",
2591
+ "&frac35;",
2592
+ "&frac38;",
2593
+ "&frac45;",
2594
+ "&frac56;",
2595
+ "&frac58;",
2596
+ "&frac78;",
2597
+ "&frasl;",
2598
+ "&frown;",
2599
+ "&Fscr;",
2600
+ "&fscr;",
2601
+ "&gacute;",
2602
+ "&Gamma;",
2603
+ "&gamma;",
2604
+ "&Gammad;",
2605
+ "&gammad;",
2606
+ "&gap;",
2607
+ "&Gbreve;",
2608
+ "&gbreve;",
2609
+ "&Gcedil;",
2610
+ "&Gcirc;",
2611
+ "&gcirc;",
2612
+ "&Gcy;",
2613
+ "&gcy;",
2614
+ "&Gdot;",
2615
+ "&gdot;",
2616
+ "&gE;",
2617
+ "&ge;",
2618
+ "&gEl;",
2619
+ "&gel;",
2620
+ "&geq;",
2621
+ "&geqq;",
2622
+ "&geqslant;",
2623
+ "&ges;",
2624
+ "&gescc;",
2625
+ "&gesdot;",
2626
+ "&gesdoto;",
2627
+ "&gesdotol;",
2628
+ "&gesl;",
2629
+ "&gesles;",
2630
+ "&Gfr;",
2631
+ "&gfr;",
2632
+ "&Gg;",
2633
+ "&gg;",
2634
+ "&ggg;",
2635
+ "&gimel;",
2636
+ "&GJcy;",
2637
+ "&gjcy;",
2638
+ "&gl;",
2639
+ "&gla;",
2640
+ "&glE;",
2641
+ "&glj;",
2642
+ "&gnap;",
2643
+ "&gnapprox;",
2644
+ "&gnE;",
2645
+ "&gne;",
2646
+ "&gneq;",
2647
+ "&gneqq;",
2648
+ "&gnsim;",
2649
+ "&Gopf;",
2650
+ "&gopf;",
2651
+ "&grave;",
2652
+ "&GreaterEqual;",
2653
+ "&GreaterEqualLess;",
2654
+ "&GreaterFullEqual;",
2655
+ "&GreaterGreater;",
2656
+ "&GreaterLess;",
2657
+ "&GreaterSlantEqual;",
2658
+ "&GreaterTilde;",
2659
+ "&Gscr;",
2660
+ "&gscr;",
2661
+ "&gsim;",
2662
+ "&gsime;",
2663
+ "&gsiml;",
2664
+ "&GT",
2665
+ "&gt",
2666
+ "&GT;",
2667
+ "&Gt;",
2668
+ "&gt;",
2669
+ "&gtcc;",
2670
+ "&gtcir;",
2671
+ "&gtdot;",
2672
+ "&gtlPar;",
2673
+ "&gtquest;",
2674
+ "&gtrapprox;",
2675
+ "&gtrarr;",
2676
+ "&gtrdot;",
2677
+ "&gtreqless;",
2678
+ "&gtreqqless;",
2679
+ "&gtrless;",
2680
+ "&gtrsim;",
2681
+ "&gvertneqq;",
2682
+ "&gvnE;",
2683
+ "&Hacek;",
2684
+ "&hairsp;",
2685
+ "&half;",
2686
+ "&hamilt;",
2687
+ "&HARDcy;",
2688
+ "&hardcy;",
2689
+ "&hArr;",
2690
+ "&harr;",
2691
+ "&harrcir;",
2692
+ "&harrw;",
2693
+ "&Hat;",
2694
+ "&hbar;",
2695
+ "&Hcirc;",
2696
+ "&hcirc;",
2697
+ "&hearts;",
2698
+ "&heartsuit;",
2699
+ "&hellip;",
2700
+ "&hercon;",
2701
+ "&Hfr;",
2702
+ "&hfr;",
2703
+ "&HilbertSpace;",
2704
+ "&hksearow;",
2705
+ "&hkswarow;",
2706
+ "&hoarr;",
2707
+ "&homtht;",
2708
+ "&hookleftarrow;",
2709
+ "&hookrightarrow;",
2710
+ "&Hopf;",
2711
+ "&hopf;",
2712
+ "&horbar;",
2713
+ "&HorizontalLine;",
2714
+ "&Hscr;",
2715
+ "&hscr;",
2716
+ "&hslash;",
2717
+ "&Hstrok;",
2718
+ "&hstrok;",
2719
+ "&HumpDownHump;",
2720
+ "&HumpEqual;",
2721
+ "&hybull;",
2722
+ "&hyphen;",
2723
+ "&Iacute",
2724
+ "&iacute",
2725
+ "&Iacute;",
2726
+ "&iacute;",
2727
+ "&ic;",
2728
+ "&Icirc",
2729
+ "&icirc",
2730
+ "&Icirc;",
2731
+ "&icirc;",
2732
+ "&Icy;",
2733
+ "&icy;",
2734
+ "&Idot;",
2735
+ "&IEcy;",
2736
+ "&iecy;",
2737
+ "&iexcl",
2738
+ "&iexcl;",
2739
+ "&iff;",
2740
+ "&Ifr;",
2741
+ "&ifr;",
2742
+ "&Igrave",
2743
+ "&igrave",
2744
+ "&Igrave;",
2745
+ "&igrave;",
2746
+ "&ii;",
2747
+ "&iiiint;",
2748
+ "&iiint;",
2749
+ "&iinfin;",
2750
+ "&iiota;",
2751
+ "&IJlig;",
2752
+ "&ijlig;",
2753
+ "&Im;",
2754
+ "&Imacr;",
2755
+ "&imacr;",
2756
+ "&image;",
2757
+ "&ImaginaryI;",
2758
+ "&imagline;",
2759
+ "&imagpart;",
2760
+ "&imath;",
2761
+ "&imof;",
2762
+ "&imped;",
2763
+ "&Implies;",
2764
+ "&in;",
2765
+ "&incare;",
2766
+ "&infin;",
2767
+ "&infintie;",
2768
+ "&inodot;",
2769
+ "&Int;",
2770
+ "&int;",
2771
+ "&intcal;",
2772
+ "&integers;",
2773
+ "&Integral;",
2774
+ "&intercal;",
2775
+ "&Intersection;",
2776
+ "&intlarhk;",
2777
+ "&intprod;",
2778
+ "&InvisibleComma;",
2779
+ "&InvisibleTimes;",
2780
+ "&IOcy;",
2781
+ "&iocy;",
2782
+ "&Iogon;",
2783
+ "&iogon;",
2784
+ "&Iopf;",
2785
+ "&iopf;",
2786
+ "&Iota;",
2787
+ "&iota;",
2788
+ "&iprod;",
2789
+ "&iquest",
2790
+ "&iquest;",
2791
+ "&Iscr;",
2792
+ "&iscr;",
2793
+ "&isin;",
2794
+ "&isindot;",
2795
+ "&isinE;",
2796
+ "&isins;",
2797
+ "&isinsv;",
2798
+ "&isinv;",
2799
+ "&it;",
2800
+ "&Itilde;",
2801
+ "&itilde;",
2802
+ "&Iukcy;",
2803
+ "&iukcy;",
2804
+ "&Iuml",
2805
+ "&iuml",
2806
+ "&Iuml;",
2807
+ "&iuml;",
2808
+ "&Jcirc;",
2809
+ "&jcirc;",
2810
+ "&Jcy;",
2811
+ "&jcy;",
2812
+ "&Jfr;",
2813
+ "&jfr;",
2814
+ "&jmath;",
2815
+ "&Jopf;",
2816
+ "&jopf;",
2817
+ "&Jscr;",
2818
+ "&jscr;",
2819
+ "&Jsercy;",
2820
+ "&jsercy;",
2821
+ "&Jukcy;",
2822
+ "&jukcy;",
2823
+ "&Kappa;",
2824
+ "&kappa;",
2825
+ "&kappav;",
2826
+ "&Kcedil;",
2827
+ "&kcedil;",
2828
+ "&Kcy;",
2829
+ "&kcy;",
2830
+ "&Kfr;",
2831
+ "&kfr;",
2832
+ "&kgreen;",
2833
+ "&KHcy;",
2834
+ "&khcy;",
2835
+ "&KJcy;",
2836
+ "&kjcy;",
2837
+ "&Kopf;",
2838
+ "&kopf;",
2839
+ "&Kscr;",
2840
+ "&kscr;",
2841
+ "&lAarr;",
2842
+ "&Lacute;",
2843
+ "&lacute;",
2844
+ "&laemptyv;",
2845
+ "&lagran;",
2846
+ "&Lambda;",
2847
+ "&lambda;",
2848
+ "&Lang;",
2849
+ "&lang;",
2850
+ "&langd;",
2851
+ "&langle;",
2852
+ "&lap;",
2853
+ "&Laplacetrf;",
2854
+ "&laquo",
2855
+ "&laquo;",
2856
+ "&Larr;",
2857
+ "&lArr;",
2858
+ "&larr;",
2859
+ "&larrb;",
2860
+ "&larrbfs;",
2861
+ "&larrfs;",
2862
+ "&larrhk;",
2863
+ "&larrlp;",
2864
+ "&larrpl;",
2865
+ "&larrsim;",
2866
+ "&larrtl;",
2867
+ "&lat;",
2868
+ "&lAtail;",
2869
+ "&latail;",
2870
+ "&late;",
2871
+ "&lates;",
2872
+ "&lBarr;",
2873
+ "&lbarr;",
2874
+ "&lbbrk;",
2875
+ "&lbrace;",
2876
+ "&lbrack;",
2877
+ "&lbrke;",
2878
+ "&lbrksld;",
2879
+ "&lbrkslu;",
2880
+ "&Lcaron;",
2881
+ "&lcaron;",
2882
+ "&Lcedil;",
2883
+ "&lcedil;",
2884
+ "&lceil;",
2885
+ "&lcub;",
2886
+ "&Lcy;",
2887
+ "&lcy;",
2888
+ "&ldca;",
2889
+ "&ldquo;",
2890
+ "&ldquor;",
2891
+ "&ldrdhar;",
2892
+ "&ldrushar;",
2893
+ "&ldsh;",
2894
+ "&lE;",
2895
+ "&le;",
2896
+ "&LeftAngleBracket;",
2897
+ "&LeftArrow;",
2898
+ "&Leftarrow;",
2899
+ "&leftarrow;",
2900
+ "&LeftArrowBar;",
2901
+ "&LeftArrowRightArrow;",
2902
+ "&leftarrowtail;",
2903
+ "&LeftCeiling;",
2904
+ "&LeftDoubleBracket;",
2905
+ "&LeftDownTeeVector;",
2906
+ "&LeftDownVector;",
2907
+ "&LeftDownVectorBar;",
2908
+ "&LeftFloor;",
2909
+ "&leftharpoondown;",
2910
+ "&leftharpoonup;",
2911
+ "&leftleftarrows;",
2912
+ "&LeftRightArrow;",
2913
+ "&Leftrightarrow;",
2914
+ "&leftrightarrow;",
2915
+ "&leftrightarrows;",
2916
+ "&leftrightharpoons;",
2917
+ "&leftrightsquigarrow;",
2918
+ "&LeftRightVector;",
2919
+ "&LeftTee;",
2920
+ "&LeftTeeArrow;",
2921
+ "&LeftTeeVector;",
2922
+ "&leftthreetimes;",
2923
+ "&LeftTriangle;",
2924
+ "&LeftTriangleBar;",
2925
+ "&LeftTriangleEqual;",
2926
+ "&LeftUpDownVector;",
2927
+ "&LeftUpTeeVector;",
2928
+ "&LeftUpVector;",
2929
+ "&LeftUpVectorBar;",
2930
+ "&LeftVector;",
2931
+ "&LeftVectorBar;",
2932
+ "&lEg;",
2933
+ "&leg;",
2934
+ "&leq;",
2935
+ "&leqq;",
2936
+ "&leqslant;",
2937
+ "&les;",
2938
+ "&lescc;",
2939
+ "&lesdot;",
2940
+ "&lesdoto;",
2941
+ "&lesdotor;",
2942
+ "&lesg;",
2943
+ "&lesges;",
2944
+ "&lessapprox;",
2945
+ "&lessdot;",
2946
+ "&lesseqgtr;",
2947
+ "&lesseqqgtr;",
2948
+ "&LessEqualGreater;",
2949
+ "&LessFullEqual;",
2950
+ "&LessGreater;",
2951
+ "&lessgtr;",
2952
+ "&LessLess;",
2953
+ "&lesssim;",
2954
+ "&LessSlantEqual;",
2955
+ "&LessTilde;",
2956
+ "&lfisht;",
2957
+ "&lfloor;",
2958
+ "&Lfr;",
2959
+ "&lfr;",
2960
+ "&lg;",
2961
+ "&lgE;",
2962
+ "&lHar;",
2963
+ "&lhard;",
2964
+ "&lharu;",
2965
+ "&lharul;",
2966
+ "&lhblk;",
2967
+ "&LJcy;",
2968
+ "&ljcy;",
2969
+ "&Ll;",
2970
+ "&ll;",
2971
+ "&llarr;",
2972
+ "&llcorner;",
2973
+ "&Lleftarrow;",
2974
+ "&llhard;",
2975
+ "&lltri;",
2976
+ "&Lmidot;",
2977
+ "&lmidot;",
2978
+ "&lmoust;",
2979
+ "&lmoustache;",
2980
+ "&lnap;",
2981
+ "&lnapprox;",
2982
+ "&lnE;",
2983
+ "&lne;",
2984
+ "&lneq;",
2985
+ "&lneqq;",
2986
+ "&lnsim;",
2987
+ "&loang;",
2988
+ "&loarr;",
2989
+ "&lobrk;",
2990
+ "&LongLeftArrow;",
2991
+ "&Longleftarrow;",
2992
+ "&longleftarrow;",
2993
+ "&LongLeftRightArrow;",
2994
+ "&Longleftrightarrow;",
2995
+ "&longleftrightarrow;",
2996
+ "&longmapsto;",
2997
+ "&LongRightArrow;",
2998
+ "&Longrightarrow;",
2999
+ "&longrightarrow;",
3000
+ "&looparrowleft;",
3001
+ "&looparrowright;",
3002
+ "&lopar;",
3003
+ "&Lopf;",
3004
+ "&lopf;",
3005
+ "&loplus;",
3006
+ "&lotimes;",
3007
+ "&lowast;",
3008
+ "&lowbar;",
3009
+ "&LowerLeftArrow;",
3010
+ "&LowerRightArrow;",
3011
+ "&loz;",
3012
+ "&lozenge;",
3013
+ "&lozf;",
3014
+ "&lpar;",
3015
+ "&lparlt;",
3016
+ "&lrarr;",
3017
+ "&lrcorner;",
3018
+ "&lrhar;",
3019
+ "&lrhard;",
3020
+ "&lrm;",
3021
+ "&lrtri;",
3022
+ "&lsaquo;",
3023
+ "&Lscr;",
3024
+ "&lscr;",
3025
+ "&Lsh;",
3026
+ "&lsh;",
3027
+ "&lsim;",
3028
+ "&lsime;",
3029
+ "&lsimg;",
3030
+ "&lsqb;",
3031
+ "&lsquo;",
3032
+ "&lsquor;",
3033
+ "&Lstrok;",
3034
+ "&lstrok;",
3035
+ "&LT",
3036
+ "&lt",
3037
+ "&LT;",
3038
+ "&Lt;",
3039
+ "&lt;",
3040
+ "&ltcc;",
3041
+ "&ltcir;",
3042
+ "&ltdot;",
3043
+ "&lthree;",
3044
+ "&ltimes;",
3045
+ "&ltlarr;",
3046
+ "&ltquest;",
3047
+ "&ltri;",
3048
+ "&ltrie;",
3049
+ "&ltrif;",
3050
+ "&ltrPar;",
3051
+ "&lurdshar;",
3052
+ "&luruhar;",
3053
+ "&lvertneqq;",
3054
+ "&lvnE;",
3055
+ "&macr",
3056
+ "&macr;",
3057
+ "&male;",
3058
+ "&malt;",
3059
+ "&maltese;",
3060
+ "&Map;",
3061
+ "&map;",
3062
+ "&mapsto;",
3063
+ "&mapstodown;",
3064
+ "&mapstoleft;",
3065
+ "&mapstoup;",
3066
+ "&marker;",
3067
+ "&mcomma;",
3068
+ "&Mcy;",
3069
+ "&mcy;",
3070
+ "&mdash;",
3071
+ "&mDDot;",
3072
+ "&measuredangle;",
3073
+ "&MediumSpace;",
3074
+ "&Mellintrf;",
3075
+ "&Mfr;",
3076
+ "&mfr;",
3077
+ "&mho;",
3078
+ "&micro",
3079
+ "&micro;",
3080
+ "&mid;",
3081
+ "&midast;",
3082
+ "&midcir;",
3083
+ "&middot",
3084
+ "&middot;",
3085
+ "&minus;",
3086
+ "&minusb;",
3087
+ "&minusd;",
3088
+ "&minusdu;",
3089
+ "&MinusPlus;",
3090
+ "&mlcp;",
3091
+ "&mldr;",
3092
+ "&mnplus;",
3093
+ "&models;",
3094
+ "&Mopf;",
3095
+ "&mopf;",
3096
+ "&mp;",
3097
+ "&Mscr;",
3098
+ "&mscr;",
3099
+ "&mstpos;",
3100
+ "&Mu;",
3101
+ "&mu;",
3102
+ "&multimap;",
3103
+ "&mumap;",
3104
+ "&nabla;",
3105
+ "&Nacute;",
3106
+ "&nacute;",
3107
+ "&nang;",
3108
+ "&nap;",
3109
+ "&napE;",
3110
+ "&napid;",
3111
+ "&napos;",
3112
+ "&napprox;",
3113
+ "&natur;",
3114
+ "&natural;",
3115
+ "&naturals;",
3116
+ "&nbsp",
3117
+ "&nbsp;",
3118
+ "&nbump;",
3119
+ "&nbumpe;",
3120
+ "&ncap;",
3121
+ "&Ncaron;",
3122
+ "&ncaron;",
3123
+ "&Ncedil;",
3124
+ "&ncedil;",
3125
+ "&ncong;",
3126
+ "&ncongdot;",
3127
+ "&ncup;",
3128
+ "&Ncy;",
3129
+ "&ncy;",
3130
+ "&ndash;",
3131
+ "&ne;",
3132
+ "&nearhk;",
3133
+ "&neArr;",
3134
+ "&nearr;",
3135
+ "&nearrow;",
3136
+ "&nedot;",
3137
+ "&NegativeMediumSpace;",
3138
+ "&NegativeThickSpace;",
3139
+ "&NegativeThinSpace;",
3140
+ "&NegativeVeryThinSpace;",
3141
+ "&nequiv;",
3142
+ "&nesear;",
3143
+ "&nesim;",
3144
+ "&NestedGreaterGreater;",
3145
+ "&NestedLessLess;",
3146
+ "&NewLine;",
3147
+ "&nexist;",
3148
+ "&nexists;",
3149
+ "&Nfr;",
3150
+ "&nfr;",
3151
+ "&ngE;",
3152
+ "&nge;",
3153
+ "&ngeq;",
3154
+ "&ngeqq;",
3155
+ "&ngeqslant;",
3156
+ "&nges;",
3157
+ "&nGg;",
3158
+ "&ngsim;",
3159
+ "&nGt;",
3160
+ "&ngt;",
3161
+ "&ngtr;",
3162
+ "&nGtv;",
3163
+ "&nhArr;",
3164
+ "&nharr;",
3165
+ "&nhpar;",
3166
+ "&ni;",
3167
+ "&nis;",
3168
+ "&nisd;",
3169
+ "&niv;",
3170
+ "&NJcy;",
3171
+ "&njcy;",
3172
+ "&nlArr;",
3173
+ "&nlarr;",
3174
+ "&nldr;",
3175
+ "&nlE;",
3176
+ "&nle;",
3177
+ "&nLeftarrow;",
3178
+ "&nleftarrow;",
3179
+ "&nLeftrightarrow;",
3180
+ "&nleftrightarrow;",
3181
+ "&nleq;",
3182
+ "&nleqq;",
3183
+ "&nleqslant;",
3184
+ "&nles;",
3185
+ "&nless;",
3186
+ "&nLl;",
3187
+ "&nlsim;",
3188
+ "&nLt;",
3189
+ "&nlt;",
3190
+ "&nltri;",
3191
+ "&nltrie;",
3192
+ "&nLtv;",
3193
+ "&nmid;",
3194
+ "&NoBreak;",
3195
+ "&NonBreakingSpace;",
3196
+ "&Nopf;",
3197
+ "&nopf;",
3198
+ "&not",
3199
+ "&Not;",
3200
+ "&not;",
3201
+ "&NotCongruent;",
3202
+ "&NotCupCap;",
3203
+ "&NotDoubleVerticalBar;",
3204
+ "&NotElement;",
3205
+ "&NotEqual;",
3206
+ "&NotEqualTilde;",
3207
+ "&NotExists;",
3208
+ "&NotGreater;",
3209
+ "&NotGreaterEqual;",
3210
+ "&NotGreaterFullEqual;",
3211
+ "&NotGreaterGreater;",
3212
+ "&NotGreaterLess;",
3213
+ "&NotGreaterSlantEqual;",
3214
+ "&NotGreaterTilde;",
3215
+ "&NotHumpDownHump;",
3216
+ "&NotHumpEqual;",
3217
+ "&notin;",
3218
+ "&notindot;",
3219
+ "&notinE;",
3220
+ "&notinva;",
3221
+ "&notinvb;",
3222
+ "&notinvc;",
3223
+ "&NotLeftTriangle;",
3224
+ "&NotLeftTriangleBar;",
3225
+ "&NotLeftTriangleEqual;",
3226
+ "&NotLess;",
3227
+ "&NotLessEqual;",
3228
+ "&NotLessGreater;",
3229
+ "&NotLessLess;",
3230
+ "&NotLessSlantEqual;",
3231
+ "&NotLessTilde;",
3232
+ "&NotNestedGreaterGreater;",
3233
+ "&NotNestedLessLess;",
3234
+ "&notni;",
3235
+ "&notniva;",
3236
+ "&notnivb;",
3237
+ "&notnivc;",
3238
+ "&NotPrecedes;",
3239
+ "&NotPrecedesEqual;",
3240
+ "&NotPrecedesSlantEqual;",
3241
+ "&NotReverseElement;",
3242
+ "&NotRightTriangle;",
3243
+ "&NotRightTriangleBar;",
3244
+ "&NotRightTriangleEqual;",
3245
+ "&NotSquareSubset;",
3246
+ "&NotSquareSubsetEqual;",
3247
+ "&NotSquareSuperset;",
3248
+ "&NotSquareSupersetEqual;",
3249
+ "&NotSubset;",
3250
+ "&NotSubsetEqual;",
3251
+ "&NotSucceeds;",
3252
+ "&NotSucceedsEqual;",
3253
+ "&NotSucceedsSlantEqual;",
3254
+ "&NotSucceedsTilde;",
3255
+ "&NotSuperset;",
3256
+ "&NotSupersetEqual;",
3257
+ "&NotTilde;",
3258
+ "&NotTildeEqual;",
3259
+ "&NotTildeFullEqual;",
3260
+ "&NotTildeTilde;",
3261
+ "&NotVerticalBar;",
3262
+ "&npar;",
3263
+ "&nparallel;",
3264
+ "&nparsl;",
3265
+ "&npart;",
3266
+ "&npolint;",
3267
+ "&npr;",
3268
+ "&nprcue;",
3269
+ "&npre;",
3270
+ "&nprec;",
3271
+ "&npreceq;",
3272
+ "&nrArr;",
3273
+ "&nrarr;",
3274
+ "&nrarrc;",
3275
+ "&nrarrw;",
3276
+ "&nRightarrow;",
3277
+ "&nrightarrow;",
3278
+ "&nrtri;",
3279
+ "&nrtrie;",
3280
+ "&nsc;",
3281
+ "&nsccue;",
3282
+ "&nsce;",
3283
+ "&Nscr;",
3284
+ "&nscr;",
3285
+ "&nshortmid;",
3286
+ "&nshortparallel;",
3287
+ "&nsim;",
3288
+ "&nsime;",
3289
+ "&nsimeq;",
3290
+ "&nsmid;",
3291
+ "&nspar;",
3292
+ "&nsqsube;",
3293
+ "&nsqsupe;",
3294
+ "&nsub;",
3295
+ "&nsubE;",
3296
+ "&nsube;",
3297
+ "&nsubset;",
3298
+ "&nsubseteq;",
3299
+ "&nsubseteqq;",
3300
+ "&nsucc;",
3301
+ "&nsucceq;",
3302
+ "&nsup;",
3303
+ "&nsupE;",
3304
+ "&nsupe;",
3305
+ "&nsupset;",
3306
+ "&nsupseteq;",
3307
+ "&nsupseteqq;",
3308
+ "&ntgl;",
3309
+ "&Ntilde",
3310
+ "&ntilde",
3311
+ "&Ntilde;",
3312
+ "&ntilde;",
3313
+ "&ntlg;",
3314
+ "&ntriangleleft;",
3315
+ "&ntrianglelefteq;",
3316
+ "&ntriangleright;",
3317
+ "&ntrianglerighteq;",
3318
+ "&Nu;",
3319
+ "&nu;",
3320
+ "&num;",
3321
+ "&numero;",
3322
+ "&numsp;",
3323
+ "&nvap;",
3324
+ "&nVDash;",
3325
+ "&nVdash;",
3326
+ "&nvDash;",
3327
+ "&nvdash;",
3328
+ "&nvge;",
3329
+ "&nvgt;",
3330
+ "&nvHarr;",
3331
+ "&nvinfin;",
3332
+ "&nvlArr;",
3333
+ "&nvle;",
3334
+ "&nvlt;",
3335
+ "&nvltrie;",
3336
+ "&nvrArr;",
3337
+ "&nvrtrie;",
3338
+ "&nvsim;",
3339
+ "&nwarhk;",
3340
+ "&nwArr;",
3341
+ "&nwarr;",
3342
+ "&nwarrow;",
3343
+ "&nwnear;",
3344
+ "&Oacute",
3345
+ "&oacute",
3346
+ "&Oacute;",
3347
+ "&oacute;",
3348
+ "&oast;",
3349
+ "&ocir;",
3350
+ "&Ocirc",
3351
+ "&ocirc",
3352
+ "&Ocirc;",
3353
+ "&ocirc;",
3354
+ "&Ocy;",
3355
+ "&ocy;",
3356
+ "&odash;",
3357
+ "&Odblac;",
3358
+ "&odblac;",
3359
+ "&odiv;",
3360
+ "&odot;",
3361
+ "&odsold;",
3362
+ "&OElig;",
3363
+ "&oelig;",
3364
+ "&ofcir;",
3365
+ "&Ofr;",
3366
+ "&ofr;",
3367
+ "&ogon;",
3368
+ "&Ograve",
3369
+ "&ograve",
3370
+ "&Ograve;",
3371
+ "&ograve;",
3372
+ "&ogt;",
3373
+ "&ohbar;",
3374
+ "&ohm;",
3375
+ "&oint;",
3376
+ "&olarr;",
3377
+ "&olcir;",
3378
+ "&olcross;",
3379
+ "&oline;",
3380
+ "&olt;",
3381
+ "&Omacr;",
3382
+ "&omacr;",
3383
+ "&Omega;",
3384
+ "&omega;",
3385
+ "&Omicron;",
3386
+ "&omicron;",
3387
+ "&omid;",
3388
+ "&ominus;",
3389
+ "&Oopf;",
3390
+ "&oopf;",
3391
+ "&opar;",
3392
+ "&OpenCurlyDoubleQuote;",
3393
+ "&OpenCurlyQuote;",
3394
+ "&operp;",
3395
+ "&oplus;",
3396
+ "&Or;",
3397
+ "&or;",
3398
+ "&orarr;",
3399
+ "&ord;",
3400
+ "&order;",
3401
+ "&orderof;",
3402
+ "&ordf",
3403
+ "&ordf;",
3404
+ "&ordm",
3405
+ "&ordm;",
3406
+ "&origof;",
3407
+ "&oror;",
3408
+ "&orslope;",
3409
+ "&orv;",
3410
+ "&oS;",
3411
+ "&Oscr;",
3412
+ "&oscr;",
3413
+ "&Oslash",
3414
+ "&oslash",
3415
+ "&Oslash;",
3416
+ "&oslash;",
3417
+ "&osol;",
3418
+ "&Otilde",
3419
+ "&otilde",
3420
+ "&Otilde;",
3421
+ "&otilde;",
3422
+ "&Otimes;",
3423
+ "&otimes;",
3424
+ "&otimesas;",
3425
+ "&Ouml",
3426
+ "&ouml",
3427
+ "&Ouml;",
3428
+ "&ouml;",
3429
+ "&ovbar;",
3430
+ "&OverBar;",
3431
+ "&OverBrace;",
3432
+ "&OverBracket;",
3433
+ "&OverParenthesis;",
3434
+ "&par;",
3435
+ "&para",
3436
+ "&para;",
3437
+ "&parallel;",
3438
+ "&parsim;",
3439
+ "&parsl;",
3440
+ "&part;",
3441
+ "&PartialD;",
3442
+ "&Pcy;",
3443
+ "&pcy;",
3444
+ "&percnt;",
3445
+ "&period;",
3446
+ "&permil;",
3447
+ "&perp;",
3448
+ "&pertenk;",
3449
+ "&Pfr;",
3450
+ "&pfr;",
3451
+ "&Phi;",
3452
+ "&phi;",
3453
+ "&phiv;",
3454
+ "&phmmat;",
3455
+ "&phone;",
3456
+ "&Pi;",
3457
+ "&pi;",
3458
+ "&pitchfork;",
3459
+ "&piv;",
3460
+ "&planck;",
3461
+ "&planckh;",
3462
+ "&plankv;",
3463
+ "&plus;",
3464
+ "&plusacir;",
3465
+ "&plusb;",
3466
+ "&pluscir;",
3467
+ "&plusdo;",
3468
+ "&plusdu;",
3469
+ "&pluse;",
3470
+ "&PlusMinus;",
3471
+ "&plusmn",
3472
+ "&plusmn;",
3473
+ "&plussim;",
3474
+ "&plustwo;",
3475
+ "&pm;",
3476
+ "&Poincareplane;",
3477
+ "&pointint;",
3478
+ "&Popf;",
3479
+ "&popf;",
3480
+ "&pound",
3481
+ "&pound;",
3482
+ "&Pr;",
3483
+ "&pr;",
3484
+ "&prap;",
3485
+ "&prcue;",
3486
+ "&prE;",
3487
+ "&pre;",
3488
+ "&prec;",
3489
+ "&precapprox;",
3490
+ "&preccurlyeq;",
3491
+ "&Precedes;",
3492
+ "&PrecedesEqual;",
3493
+ "&PrecedesSlantEqual;",
3494
+ "&PrecedesTilde;",
3495
+ "&preceq;",
3496
+ "&precnapprox;",
3497
+ "&precneqq;",
3498
+ "&precnsim;",
3499
+ "&precsim;",
3500
+ "&Prime;",
3501
+ "&prime;",
3502
+ "&primes;",
3503
+ "&prnap;",
3504
+ "&prnE;",
3505
+ "&prnsim;",
3506
+ "&prod;",
3507
+ "&Product;",
3508
+ "&profalar;",
3509
+ "&profline;",
3510
+ "&profsurf;",
3511
+ "&prop;",
3512
+ "&Proportion;",
3513
+ "&Proportional;",
3514
+ "&propto;",
3515
+ "&prsim;",
3516
+ "&prurel;",
3517
+ "&Pscr;",
3518
+ "&pscr;",
3519
+ "&Psi;",
3520
+ "&psi;",
3521
+ "&puncsp;",
3522
+ "&Qfr;",
3523
+ "&qfr;",
3524
+ "&qint;",
3525
+ "&Qopf;",
3526
+ "&qopf;",
3527
+ "&qprime;",
3528
+ "&Qscr;",
3529
+ "&qscr;",
3530
+ "&quaternions;",
3531
+ "&quatint;",
3532
+ "&quest;",
3533
+ "&questeq;",
3534
+ "&QUOT",
3535
+ "&quot",
3536
+ "&QUOT;",
3537
+ "&quot;",
3538
+ "&rAarr;",
3539
+ "&race;",
3540
+ "&Racute;",
3541
+ "&racute;",
3542
+ "&radic;",
3543
+ "&raemptyv;",
3544
+ "&Rang;",
3545
+ "&rang;",
3546
+ "&rangd;",
3547
+ "&range;",
3548
+ "&rangle;",
3549
+ "&raquo",
3550
+ "&raquo;",
3551
+ "&Rarr;",
3552
+ "&rArr;",
3553
+ "&rarr;",
3554
+ "&rarrap;",
3555
+ "&rarrb;",
3556
+ "&rarrbfs;",
3557
+ "&rarrc;",
3558
+ "&rarrfs;",
3559
+ "&rarrhk;",
3560
+ "&rarrlp;",
3561
+ "&rarrpl;",
3562
+ "&rarrsim;",
3563
+ "&Rarrtl;",
3564
+ "&rarrtl;",
3565
+ "&rarrw;",
3566
+ "&rAtail;",
3567
+ "&ratail;",
3568
+ "&ratio;",
3569
+ "&rationals;",
3570
+ "&RBarr;",
3571
+ "&rBarr;",
3572
+ "&rbarr;",
3573
+ "&rbbrk;",
3574
+ "&rbrace;",
3575
+ "&rbrack;",
3576
+ "&rbrke;",
3577
+ "&rbrksld;",
3578
+ "&rbrkslu;",
3579
+ "&Rcaron;",
3580
+ "&rcaron;",
3581
+ "&Rcedil;",
3582
+ "&rcedil;",
3583
+ "&rceil;",
3584
+ "&rcub;",
3585
+ "&Rcy;",
3586
+ "&rcy;",
3587
+ "&rdca;",
3588
+ "&rdldhar;",
3589
+ "&rdquo;",
3590
+ "&rdquor;",
3591
+ "&rdsh;",
3592
+ "&Re;",
3593
+ "&real;",
3594
+ "&realine;",
3595
+ "&realpart;",
3596
+ "&reals;",
3597
+ "&rect;",
3598
+ "&REG",
3599
+ "&reg",
3600
+ "&REG;",
3601
+ "&reg;",
3602
+ "&ReverseElement;",
3603
+ "&ReverseEquilibrium;",
3604
+ "&ReverseUpEquilibrium;",
3605
+ "&rfisht;",
3606
+ "&rfloor;",
3607
+ "&Rfr;",
3608
+ "&rfr;",
3609
+ "&rHar;",
3610
+ "&rhard;",
3611
+ "&rharu;",
3612
+ "&rharul;",
3613
+ "&Rho;",
3614
+ "&rho;",
3615
+ "&rhov;",
3616
+ "&RightAngleBracket;",
3617
+ "&RightArrow;",
3618
+ "&Rightarrow;",
3619
+ "&rightarrow;",
3620
+ "&RightArrowBar;",
3621
+ "&RightArrowLeftArrow;",
3622
+ "&rightarrowtail;",
3623
+ "&RightCeiling;",
3624
+ "&RightDoubleBracket;",
3625
+ "&RightDownTeeVector;",
3626
+ "&RightDownVector;",
3627
+ "&RightDownVectorBar;",
3628
+ "&RightFloor;",
3629
+ "&rightharpoondown;",
3630
+ "&rightharpoonup;",
3631
+ "&rightleftarrows;",
3632
+ "&rightleftharpoons;",
3633
+ "&rightrightarrows;",
3634
+ "&rightsquigarrow;",
3635
+ "&RightTee;",
3636
+ "&RightTeeArrow;",
3637
+ "&RightTeeVector;",
3638
+ "&rightthreetimes;",
3639
+ "&RightTriangle;",
3640
+ "&RightTriangleBar;",
3641
+ "&RightTriangleEqual;",
3642
+ "&RightUpDownVector;",
3643
+ "&RightUpTeeVector;",
3644
+ "&RightUpVector;",
3645
+ "&RightUpVectorBar;",
3646
+ "&RightVector;",
3647
+ "&RightVectorBar;",
3648
+ "&ring;",
3649
+ "&risingdotseq;",
3650
+ "&rlarr;",
3651
+ "&rlhar;",
3652
+ "&rlm;",
3653
+ "&rmoust;",
3654
+ "&rmoustache;",
3655
+ "&rnmid;",
3656
+ "&roang;",
3657
+ "&roarr;",
3658
+ "&robrk;",
3659
+ "&ropar;",
3660
+ "&Ropf;",
3661
+ "&ropf;",
3662
+ "&roplus;",
3663
+ "&rotimes;",
3664
+ "&RoundImplies;",
3665
+ "&rpar;",
3666
+ "&rpargt;",
3667
+ "&rppolint;",
3668
+ "&rrarr;",
3669
+ "&Rrightarrow;",
3670
+ "&rsaquo;",
3671
+ "&Rscr;",
3672
+ "&rscr;",
3673
+ "&Rsh;",
3674
+ "&rsh;",
3675
+ "&rsqb;",
3676
+ "&rsquo;",
3677
+ "&rsquor;",
3678
+ "&rthree;",
3679
+ "&rtimes;",
3680
+ "&rtri;",
3681
+ "&rtrie;",
3682
+ "&rtrif;",
3683
+ "&rtriltri;",
3684
+ "&RuleDelayed;",
3685
+ "&ruluhar;",
3686
+ "&rx;",
3687
+ "&Sacute;",
3688
+ "&sacute;",
3689
+ "&sbquo;",
3690
+ "&Sc;",
3691
+ "&sc;",
3692
+ "&scap;",
3693
+ "&Scaron;",
3694
+ "&scaron;",
3695
+ "&sccue;",
3696
+ "&scE;",
3697
+ "&sce;",
3698
+ "&Scedil;",
3699
+ "&scedil;",
3700
+ "&Scirc;",
3701
+ "&scirc;",
3702
+ "&scnap;",
3703
+ "&scnE;",
3704
+ "&scnsim;",
3705
+ "&scpolint;",
3706
+ "&scsim;",
3707
+ "&Scy;",
3708
+ "&scy;",
3709
+ "&sdot;",
3710
+ "&sdotb;",
3711
+ "&sdote;",
3712
+ "&searhk;",
3713
+ "&seArr;",
3714
+ "&searr;",
3715
+ "&searrow;",
3716
+ "&sect",
3717
+ "&sect;",
3718
+ "&semi;",
3719
+ "&seswar;",
3720
+ "&setminus;",
3721
+ "&setmn;",
3722
+ "&sext;",
3723
+ "&Sfr;",
3724
+ "&sfr;",
3725
+ "&sfrown;",
3726
+ "&sharp;",
3727
+ "&SHCHcy;",
3728
+ "&shchcy;",
3729
+ "&SHcy;",
3730
+ "&shcy;",
3731
+ "&ShortDownArrow;",
3732
+ "&ShortLeftArrow;",
3733
+ "&shortmid;",
3734
+ "&shortparallel;",
3735
+ "&ShortRightArrow;",
3736
+ "&ShortUpArrow;",
3737
+ "&shy",
3738
+ "&shy;",
3739
+ "&Sigma;",
3740
+ "&sigma;",
3741
+ "&sigmaf;",
3742
+ "&sigmav;",
3743
+ "&sim;",
3744
+ "&simdot;",
3745
+ "&sime;",
3746
+ "&simeq;",
3747
+ "&simg;",
3748
+ "&simgE;",
3749
+ "&siml;",
3750
+ "&simlE;",
3751
+ "&simne;",
3752
+ "&simplus;",
3753
+ "&simrarr;",
3754
+ "&slarr;",
3755
+ "&SmallCircle;",
3756
+ "&smallsetminus;",
3757
+ "&smashp;",
3758
+ "&smeparsl;",
3759
+ "&smid;",
3760
+ "&smile;",
3761
+ "&smt;",
3762
+ "&smte;",
3763
+ "&smtes;",
3764
+ "&SOFTcy;",
3765
+ "&softcy;",
3766
+ "&sol;",
3767
+ "&solb;",
3768
+ "&solbar;",
3769
+ "&Sopf;",
3770
+ "&sopf;",
3771
+ "&spades;",
3772
+ "&spadesuit;",
3773
+ "&spar;",
3774
+ "&sqcap;",
3775
+ "&sqcaps;",
3776
+ "&sqcup;",
3777
+ "&sqcups;",
3778
+ "&Sqrt;",
3779
+ "&sqsub;",
3780
+ "&sqsube;",
3781
+ "&sqsubset;",
3782
+ "&sqsubseteq;",
3783
+ "&sqsup;",
3784
+ "&sqsupe;",
3785
+ "&sqsupset;",
3786
+ "&sqsupseteq;",
3787
+ "&squ;",
3788
+ "&Square;",
3789
+ "&square;",
3790
+ "&SquareIntersection;",
3791
+ "&SquareSubset;",
3792
+ "&SquareSubsetEqual;",
3793
+ "&SquareSuperset;",
3794
+ "&SquareSupersetEqual;",
3795
+ "&SquareUnion;",
3796
+ "&squarf;",
3797
+ "&squf;",
3798
+ "&srarr;",
3799
+ "&Sscr;",
3800
+ "&sscr;",
3801
+ "&ssetmn;",
3802
+ "&ssmile;",
3803
+ "&sstarf;",
3804
+ "&Star;",
3805
+ "&star;",
3806
+ "&starf;",
3807
+ "&straightepsilon;",
3808
+ "&straightphi;",
3809
+ "&strns;",
3810
+ "&Sub;",
3811
+ "&sub;",
3812
+ "&subdot;",
3813
+ "&subE;",
3814
+ "&sube;",
3815
+ "&subedot;",
3816
+ "&submult;",
3817
+ "&subnE;",
3818
+ "&subne;",
3819
+ "&subplus;",
3820
+ "&subrarr;",
3821
+ "&Subset;",
3822
+ "&subset;",
3823
+ "&subseteq;",
3824
+ "&subseteqq;",
3825
+ "&SubsetEqual;",
3826
+ "&subsetneq;",
3827
+ "&subsetneqq;",
3828
+ "&subsim;",
3829
+ "&subsub;",
3830
+ "&subsup;",
3831
+ "&succ;",
3832
+ "&succapprox;",
3833
+ "&succcurlyeq;",
3834
+ "&Succeeds;",
3835
+ "&SucceedsEqual;",
3836
+ "&SucceedsSlantEqual;",
3837
+ "&SucceedsTilde;",
3838
+ "&succeq;",
3839
+ "&succnapprox;",
3840
+ "&succneqq;",
3841
+ "&succnsim;",
3842
+ "&succsim;",
3843
+ "&SuchThat;",
3844
+ "&Sum;",
3845
+ "&sum;",
3846
+ "&sung;",
3847
+ "&sup1",
3848
+ "&sup1;",
3849
+ "&sup2",
3850
+ "&sup2;",
3851
+ "&sup3",
3852
+ "&sup3;",
3853
+ "&Sup;",
3854
+ "&sup;",
3855
+ "&supdot;",
3856
+ "&supdsub;",
3857
+ "&supE;",
3858
+ "&supe;",
3859
+ "&supedot;",
3860
+ "&Superset;",
3861
+ "&SupersetEqual;",
3862
+ "&suphsol;",
3863
+ "&suphsub;",
3864
+ "&suplarr;",
3865
+ "&supmult;",
3866
+ "&supnE;",
3867
+ "&supne;",
3868
+ "&supplus;",
3869
+ "&Supset;",
3870
+ "&supset;",
3871
+ "&supseteq;",
3872
+ "&supseteqq;",
3873
+ "&supsetneq;",
3874
+ "&supsetneqq;",
3875
+ "&supsim;",
3876
+ "&supsub;",
3877
+ "&supsup;",
3878
+ "&swarhk;",
3879
+ "&swArr;",
3880
+ "&swarr;",
3881
+ "&swarrow;",
3882
+ "&swnwar;",
3883
+ "&szlig",
3884
+ "&szlig;",
3885
+ "&Tab;",
3886
+ "&target;",
3887
+ "&Tau;",
3888
+ "&tau;",
3889
+ "&tbrk;",
3890
+ "&Tcaron;",
3891
+ "&tcaron;",
3892
+ "&Tcedil;",
3893
+ "&tcedil;",
3894
+ "&Tcy;",
3895
+ "&tcy;",
3896
+ "&tdot;",
3897
+ "&telrec;",
3898
+ "&Tfr;",
3899
+ "&tfr;",
3900
+ "&there4;",
3901
+ "&Therefore;",
3902
+ "&therefore;",
3903
+ "&Theta;",
3904
+ "&theta;",
3905
+ "&thetasym;",
3906
+ "&thetav;",
3907
+ "&thickapprox;",
3908
+ "&thicksim;",
3909
+ "&ThickSpace;",
3910
+ "&thinsp;",
3911
+ "&ThinSpace;",
3912
+ "&thkap;",
3913
+ "&thksim;",
3914
+ "&THORN",
3915
+ "&thorn",
3916
+ "&THORN;",
3917
+ "&thorn;",
3918
+ "&Tilde;",
3919
+ "&tilde;",
3920
+ "&TildeEqual;",
3921
+ "&TildeFullEqual;",
3922
+ "&TildeTilde;",
3923
+ "&times",
3924
+ "&times;",
3925
+ "&timesb;",
3926
+ "&timesbar;",
3927
+ "&timesd;",
3928
+ "&tint;",
3929
+ "&toea;",
3930
+ "&top;",
3931
+ "&topbot;",
3932
+ "&topcir;",
3933
+ "&Topf;",
3934
+ "&topf;",
3935
+ "&topfork;",
3936
+ "&tosa;",
3937
+ "&tprime;",
3938
+ "&TRADE;",
3939
+ "&trade;",
3940
+ "&triangle;",
3941
+ "&triangledown;",
3942
+ "&triangleleft;",
3943
+ "&trianglelefteq;",
3944
+ "&triangleq;",
3945
+ "&triangleright;",
3946
+ "&trianglerighteq;",
3947
+ "&tridot;",
3948
+ "&trie;",
3949
+ "&triminus;",
3950
+ "&TripleDot;",
3951
+ "&triplus;",
3952
+ "&trisb;",
3953
+ "&tritime;",
3954
+ "&trpezium;",
3955
+ "&Tscr;",
3956
+ "&tscr;",
3957
+ "&TScy;",
3958
+ "&tscy;",
3959
+ "&TSHcy;",
3960
+ "&tshcy;",
3961
+ "&Tstrok;",
3962
+ "&tstrok;",
3963
+ "&twixt;",
3964
+ "&twoheadleftarrow;",
3965
+ "&twoheadrightarrow;",
3966
+ "&Uacute",
3967
+ "&uacute",
3968
+ "&Uacute;",
3969
+ "&uacute;",
3970
+ "&Uarr;",
3971
+ "&uArr;",
3972
+ "&uarr;",
3973
+ "&Uarrocir;",
3974
+ "&Ubrcy;",
3975
+ "&ubrcy;",
3976
+ "&Ubreve;",
3977
+ "&ubreve;",
3978
+ "&Ucirc",
3979
+ "&ucirc",
3980
+ "&Ucirc;",
3981
+ "&ucirc;",
3982
+ "&Ucy;",
3983
+ "&ucy;",
3984
+ "&udarr;",
3985
+ "&Udblac;",
3986
+ "&udblac;",
3987
+ "&udhar;",
3988
+ "&ufisht;",
3989
+ "&Ufr;",
3990
+ "&ufr;",
3991
+ "&Ugrave",
3992
+ "&ugrave",
3993
+ "&Ugrave;",
3994
+ "&ugrave;",
3995
+ "&uHar;",
3996
+ "&uharl;",
3997
+ "&uharr;",
3998
+ "&uhblk;",
3999
+ "&ulcorn;",
4000
+ "&ulcorner;",
4001
+ "&ulcrop;",
4002
+ "&ultri;",
4003
+ "&Umacr;",
4004
+ "&umacr;",
4005
+ "&uml",
4006
+ "&uml;",
4007
+ "&UnderBar;",
4008
+ "&UnderBrace;",
4009
+ "&UnderBracket;",
4010
+ "&UnderParenthesis;",
4011
+ "&Union;",
4012
+ "&UnionPlus;",
4013
+ "&Uogon;",
4014
+ "&uogon;",
4015
+ "&Uopf;",
4016
+ "&uopf;",
4017
+ "&UpArrow;",
4018
+ "&Uparrow;",
4019
+ "&uparrow;",
4020
+ "&UpArrowBar;",
4021
+ "&UpArrowDownArrow;",
4022
+ "&UpDownArrow;",
4023
+ "&Updownarrow;",
4024
+ "&updownarrow;",
4025
+ "&UpEquilibrium;",
4026
+ "&upharpoonleft;",
4027
+ "&upharpoonright;",
4028
+ "&uplus;",
4029
+ "&UpperLeftArrow;",
4030
+ "&UpperRightArrow;",
4031
+ "&Upsi;",
4032
+ "&upsi;",
4033
+ "&upsih;",
4034
+ "&Upsilon;",
4035
+ "&upsilon;",
4036
+ "&UpTee;",
4037
+ "&UpTeeArrow;",
4038
+ "&upuparrows;",
4039
+ "&urcorn;",
4040
+ "&urcorner;",
4041
+ "&urcrop;",
4042
+ "&Uring;",
4043
+ "&uring;",
4044
+ "&urtri;",
4045
+ "&Uscr;",
4046
+ "&uscr;",
4047
+ "&utdot;",
4048
+ "&Utilde;",
4049
+ "&utilde;",
4050
+ "&utri;",
4051
+ "&utrif;",
4052
+ "&uuarr;",
4053
+ "&Uuml",
4054
+ "&uuml",
4055
+ "&Uuml;",
4056
+ "&uuml;",
4057
+ "&uwangle;",
4058
+ "&vangrt;",
4059
+ "&varepsilon;",
4060
+ "&varkappa;",
4061
+ "&varnothing;",
4062
+ "&varphi;",
4063
+ "&varpi;",
4064
+ "&varpropto;",
4065
+ "&vArr;",
4066
+ "&varr;",
4067
+ "&varrho;",
4068
+ "&varsigma;",
4069
+ "&varsubsetneq;",
4070
+ "&varsubsetneqq;",
4071
+ "&varsupsetneq;",
4072
+ "&varsupsetneqq;",
4073
+ "&vartheta;",
4074
+ "&vartriangleleft;",
4075
+ "&vartriangleright;",
4076
+ "&Vbar;",
4077
+ "&vBar;",
4078
+ "&vBarv;",
4079
+ "&Vcy;",
4080
+ "&vcy;",
4081
+ "&VDash;",
4082
+ "&Vdash;",
4083
+ "&vDash;",
4084
+ "&vdash;",
4085
+ "&Vdashl;",
4086
+ "&Vee;",
4087
+ "&vee;",
4088
+ "&veebar;",
4089
+ "&veeeq;",
4090
+ "&vellip;",
4091
+ "&Verbar;",
4092
+ "&verbar;",
4093
+ "&Vert;",
4094
+ "&vert;",
4095
+ "&VerticalBar;",
4096
+ "&VerticalLine;",
4097
+ "&VerticalSeparator;",
4098
+ "&VerticalTilde;",
4099
+ "&VeryThinSpace;",
4100
+ "&Vfr;",
4101
+ "&vfr;",
4102
+ "&vltri;",
4103
+ "&vnsub;",
4104
+ "&vnsup;",
4105
+ "&Vopf;",
4106
+ "&vopf;",
4107
+ "&vprop;",
4108
+ "&vrtri;",
4109
+ "&Vscr;",
4110
+ "&vscr;",
4111
+ "&vsubnE;",
4112
+ "&vsubne;",
4113
+ "&vsupnE;",
4114
+ "&vsupne;",
4115
+ "&Vvdash;",
4116
+ "&vzigzag;",
4117
+ "&Wcirc;",
4118
+ "&wcirc;",
4119
+ "&wedbar;",
4120
+ "&Wedge;",
4121
+ "&wedge;",
4122
+ "&wedgeq;",
4123
+ "&weierp;",
4124
+ "&Wfr;",
4125
+ "&wfr;",
4126
+ "&Wopf;",
4127
+ "&wopf;",
4128
+ "&wp;",
4129
+ "&wr;",
4130
+ "&wreath;",
4131
+ "&Wscr;",
4132
+ "&wscr;",
4133
+ "&xcap;",
4134
+ "&xcirc;",
4135
+ "&xcup;",
4136
+ "&xdtri;",
4137
+ "&Xfr;",
4138
+ "&xfr;",
4139
+ "&xhArr;",
4140
+ "&xharr;",
4141
+ "&Xi;",
4142
+ "&xi;",
4143
+ "&xlArr;",
4144
+ "&xlarr;",
4145
+ "&xmap;",
4146
+ "&xnis;",
4147
+ "&xodot;",
4148
+ "&Xopf;",
4149
+ "&xopf;",
4150
+ "&xoplus;",
4151
+ "&xotime;",
4152
+ "&xrArr;",
4153
+ "&xrarr;",
4154
+ "&Xscr;",
4155
+ "&xscr;",
4156
+ "&xsqcup;",
4157
+ "&xuplus;",
4158
+ "&xutri;",
4159
+ "&xvee;",
4160
+ "&xwedge;",
4161
+ "&Yacute",
4162
+ "&yacute",
4163
+ "&Yacute;",
4164
+ "&yacute;",
4165
+ "&YAcy;",
4166
+ "&yacy;",
4167
+ "&Ycirc;",
4168
+ "&ycirc;",
4169
+ "&Ycy;",
4170
+ "&ycy;",
4171
+ "&yen",
4172
+ "&yen;",
4173
+ "&Yfr;",
4174
+ "&yfr;",
4175
+ "&YIcy;",
4176
+ "&yicy;",
4177
+ "&Yopf;",
4178
+ "&yopf;",
4179
+ "&Yscr;",
4180
+ "&yscr;",
4181
+ "&YUcy;",
4182
+ "&yucy;",
4183
+ "&yuml",
4184
+ "&Yuml;",
4185
+ "&yuml;",
4186
+ "&Zacute;",
4187
+ "&zacute;",
4188
+ "&Zcaron;",
4189
+ "&zcaron;",
4190
+ "&Zcy;",
4191
+ "&zcy;",
4192
+ "&Zdot;",
4193
+ "&zdot;",
4194
+ "&zeetrf;",
4195
+ "&ZeroWidthSpace;",
4196
+ "&Zeta;",
4197
+ "&zeta;",
4198
+ "&Zfr;",
4199
+ "&zfr;",
4200
+ "&ZHcy;",
4201
+ "&zhcy;",
4202
+ "&zigrarr;",
4203
+ "&Zopf;",
4204
+ "&zopf;",
4205
+ "&Zscr;",
4206
+ "&zscr;",
4207
+ "&zwj;",
4208
+ "&zwnj;"
4209
+ ];
4210
+
4211
+ exports.bundledElements = bundledElements;
4212
+ exports.entities = entities;
4213
+ //# sourceMappingURL=elements.js.map