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