html-validate 7.7.0 → 7.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/README.md +16 -16
  2. package/dist/cjs/browser.d.ts +4 -2
  3. package/dist/cjs/browser.js +11 -7
  4. package/dist/cjs/browser.js.map +1 -1
  5. package/dist/cjs/cli.js +2 -0
  6. package/dist/cjs/cli.js.map +1 -1
  7. package/dist/cjs/core.d.ts +26 -67
  8. package/dist/cjs/core.js +189 -2388
  9. package/dist/cjs/core.js.map +1 -1
  10. package/dist/cjs/elements.js +3704 -0
  11. package/dist/cjs/elements.js.map +1 -0
  12. package/dist/cjs/html-validate.js +3 -0
  13. package/dist/cjs/html-validate.js.map +1 -1
  14. package/dist/cjs/index.d.ts +5 -3
  15. package/dist/cjs/index.js +11 -7
  16. package/dist/cjs/index.js.map +1 -1
  17. package/dist/cjs/jest-lib.js +1 -0
  18. package/dist/cjs/jest-lib.js.map +1 -1
  19. package/dist/cjs/jest.d.ts +1 -1
  20. package/dist/cjs/jest.js +3 -0
  21. package/dist/cjs/jest.js.map +1 -1
  22. package/dist/cjs/meta-helper.d.ts +27 -0
  23. package/dist/cjs/meta-helper.js +64 -0
  24. package/dist/cjs/meta-helper.js.map +1 -0
  25. package/dist/cjs/rules-helper.d.ts +45 -0
  26. package/dist/cjs/rules-helper.js +408 -0
  27. package/dist/cjs/rules-helper.js.map +1 -0
  28. package/dist/cjs/test-utils.d.ts +1 -1
  29. package/dist/es/browser.d.ts +4 -2
  30. package/dist/es/browser.js +4 -2
  31. package/dist/es/browser.js.map +1 -1
  32. package/dist/es/cli.js +3 -1
  33. package/dist/es/cli.js.map +1 -1
  34. package/dist/es/core.d.ts +26 -67
  35. package/dist/es/core.js +156 -2357
  36. package/dist/es/core.js.map +1 -1
  37. package/dist/es/elements.js +3701 -0
  38. package/dist/es/elements.js.map +1 -0
  39. package/dist/es/html-validate.js +3 -1
  40. package/dist/es/html-validate.js.map +1 -1
  41. package/dist/es/index.d.ts +5 -3
  42. package/dist/es/index.js +4 -2
  43. package/dist/es/index.js.map +1 -1
  44. package/dist/es/jest-lib.js +2 -1
  45. package/dist/es/jest-lib.js.map +1 -1
  46. package/dist/es/jest.d.ts +1 -1
  47. package/dist/es/jest.js +3 -1
  48. package/dist/es/jest.js.map +1 -1
  49. package/dist/es/meta-helper.d.ts +27 -0
  50. package/dist/es/meta-helper.js +61 -0
  51. package/dist/es/meta-helper.js.map +1 -0
  52. package/dist/es/rules-helper.d.ts +45 -0
  53. package/dist/es/rules-helper.js +398 -0
  54. package/dist/es/rules-helper.js.map +1 -0
  55. package/dist/es/test-utils.d.ts +1 -1
  56. package/elements/html5.js +1 -2119
  57. package/package.json +15 -9
  58. package/elements/README.md +0 -49
  59. package/elements/entities.json +0 -1724
@@ -0,0 +1,3701 @@
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
+ "&abreve;",
1978
+ "&ac;",
1979
+ "&acd;",
1980
+ "&ace;",
1981
+ "&acirc;",
1982
+ "&acute;",
1983
+ "&acy;",
1984
+ "&aelig;",
1985
+ "&af;",
1986
+ "&afr;",
1987
+ "&agrave;",
1988
+ "&alefsym;",
1989
+ "&aleph;",
1990
+ "&alpha;",
1991
+ "&amacr;",
1992
+ "&amalg;",
1993
+ "&amp;",
1994
+ "&and;",
1995
+ "&andand;",
1996
+ "&andd;",
1997
+ "&andslope;",
1998
+ "&andv;",
1999
+ "&ang;",
2000
+ "&ange;",
2001
+ "&angle;",
2002
+ "&angmsd;",
2003
+ "&angmsdaa;",
2004
+ "&angmsdab;",
2005
+ "&angmsdac;",
2006
+ "&angmsdad;",
2007
+ "&angmsdae;",
2008
+ "&angmsdaf;",
2009
+ "&angmsdag;",
2010
+ "&angmsdah;",
2011
+ "&angrt;",
2012
+ "&angrtvb;",
2013
+ "&angrtvbd;",
2014
+ "&angsph;",
2015
+ "&angst;",
2016
+ "&angzarr;",
2017
+ "&aogon;",
2018
+ "&aopf;",
2019
+ "&ap;",
2020
+ "&apacir;",
2021
+ "&ape;",
2022
+ "&apid;",
2023
+ "&apos;",
2024
+ "&applyfunction;",
2025
+ "&approx;",
2026
+ "&approxeq;",
2027
+ "&aring;",
2028
+ "&ascr;",
2029
+ "&assign;",
2030
+ "&ast;",
2031
+ "&asymp;",
2032
+ "&asympeq;",
2033
+ "&atilde;",
2034
+ "&auml;",
2035
+ "&awconint;",
2036
+ "&awint;",
2037
+ "&backcong;",
2038
+ "&backepsilon;",
2039
+ "&backprime;",
2040
+ "&backsim;",
2041
+ "&backsimeq;",
2042
+ "&backslash;",
2043
+ "&barv;",
2044
+ "&barvee;",
2045
+ "&barwed;",
2046
+ "&barwedge;",
2047
+ "&bbrk;",
2048
+ "&bbrktbrk;",
2049
+ "&bcong;",
2050
+ "&bcy;",
2051
+ "&bdquo;",
2052
+ "&becaus;",
2053
+ "&because;",
2054
+ "&bemptyv;",
2055
+ "&bepsi;",
2056
+ "&bernou;",
2057
+ "&bernoullis;",
2058
+ "&beta;",
2059
+ "&beth;",
2060
+ "&between;",
2061
+ "&bfr;",
2062
+ "&bigcap;",
2063
+ "&bigcirc;",
2064
+ "&bigcup;",
2065
+ "&bigodot;",
2066
+ "&bigoplus;",
2067
+ "&bigotimes;",
2068
+ "&bigsqcup;",
2069
+ "&bigstar;",
2070
+ "&bigtriangledown;",
2071
+ "&bigtriangleup;",
2072
+ "&biguplus;",
2073
+ "&bigvee;",
2074
+ "&bigwedge;",
2075
+ "&bkarow;",
2076
+ "&blacklozenge;",
2077
+ "&blacksquare;",
2078
+ "&blacktriangle;",
2079
+ "&blacktriangledown;",
2080
+ "&blacktriangleleft;",
2081
+ "&blacktriangleright;",
2082
+ "&blank;",
2083
+ "&blk12;",
2084
+ "&blk14;",
2085
+ "&blk34;",
2086
+ "&block;",
2087
+ "&bne;",
2088
+ "&bnequiv;",
2089
+ "&bnot;",
2090
+ "&bopf;",
2091
+ "&bot;",
2092
+ "&bottom;",
2093
+ "&bowtie;",
2094
+ "&boxbox;",
2095
+ "&boxdl;",
2096
+ "&boxdr;",
2097
+ "&boxh;",
2098
+ "&boxhd;",
2099
+ "&boxhu;",
2100
+ "&boxminus;",
2101
+ "&boxplus;",
2102
+ "&boxtimes;",
2103
+ "&boxul;",
2104
+ "&boxur;",
2105
+ "&boxv;",
2106
+ "&boxvh;",
2107
+ "&boxvl;",
2108
+ "&boxvr;",
2109
+ "&bprime;",
2110
+ "&breve;",
2111
+ "&brvbar;",
2112
+ "&bscr;",
2113
+ "&bsemi;",
2114
+ "&bsim;",
2115
+ "&bsime;",
2116
+ "&bsol;",
2117
+ "&bsolb;",
2118
+ "&bsolhsub;",
2119
+ "&bull;",
2120
+ "&bullet;",
2121
+ "&bump;",
2122
+ "&bumpe;",
2123
+ "&bumpeq;",
2124
+ "&cacute;",
2125
+ "&cap;",
2126
+ "&capand;",
2127
+ "&capbrcup;",
2128
+ "&capcap;",
2129
+ "&capcup;",
2130
+ "&capdot;",
2131
+ "&capitaldifferentiald;",
2132
+ "&caps;",
2133
+ "&caret;",
2134
+ "&caron;",
2135
+ "&cayleys;",
2136
+ "&ccaps;",
2137
+ "&ccaron;",
2138
+ "&ccedil;",
2139
+ "&ccirc;",
2140
+ "&cconint;",
2141
+ "&ccups;",
2142
+ "&ccupssm;",
2143
+ "&cdot;",
2144
+ "&cedil;",
2145
+ "&cedilla;",
2146
+ "&cemptyv;",
2147
+ "&cent;",
2148
+ "&centerdot;",
2149
+ "&cfr;",
2150
+ "&chcy;",
2151
+ "&check;",
2152
+ "&checkmark;",
2153
+ "&chi;",
2154
+ "&cir;",
2155
+ "&circ;",
2156
+ "&circeq;",
2157
+ "&circlearrowleft;",
2158
+ "&circlearrowright;",
2159
+ "&circledast;",
2160
+ "&circledcirc;",
2161
+ "&circleddash;",
2162
+ "&circledot;",
2163
+ "&circledr;",
2164
+ "&circleds;",
2165
+ "&circleminus;",
2166
+ "&circleplus;",
2167
+ "&circletimes;",
2168
+ "&cire;",
2169
+ "&cirfnint;",
2170
+ "&cirmid;",
2171
+ "&cirscir;",
2172
+ "&clockwisecontourintegral;",
2173
+ "&closecurlydoublequote;",
2174
+ "&closecurlyquote;",
2175
+ "&clubs;",
2176
+ "&clubsuit;",
2177
+ "&colon;",
2178
+ "&colone;",
2179
+ "&coloneq;",
2180
+ "&comma;",
2181
+ "&commat;",
2182
+ "&comp;",
2183
+ "&compfn;",
2184
+ "&complement;",
2185
+ "&complexes;",
2186
+ "&cong;",
2187
+ "&congdot;",
2188
+ "&congruent;",
2189
+ "&conint;",
2190
+ "&contourintegral;",
2191
+ "&copf;",
2192
+ "&coprod;",
2193
+ "&coproduct;",
2194
+ "&copy;",
2195
+ "&copysr;",
2196
+ "&counterclockwisecontourintegral;",
2197
+ "&crarr;",
2198
+ "&cross;",
2199
+ "&cscr;",
2200
+ "&csub;",
2201
+ "&csube;",
2202
+ "&csup;",
2203
+ "&csupe;",
2204
+ "&ctdot;",
2205
+ "&cudarrl;",
2206
+ "&cudarrr;",
2207
+ "&cuepr;",
2208
+ "&cuesc;",
2209
+ "&cularr;",
2210
+ "&cularrp;",
2211
+ "&cup;",
2212
+ "&cupbrcap;",
2213
+ "&cupcap;",
2214
+ "&cupcup;",
2215
+ "&cupdot;",
2216
+ "&cupor;",
2217
+ "&cups;",
2218
+ "&curarr;",
2219
+ "&curarrm;",
2220
+ "&curlyeqprec;",
2221
+ "&curlyeqsucc;",
2222
+ "&curlyvee;",
2223
+ "&curlywedge;",
2224
+ "&curren;",
2225
+ "&curvearrowleft;",
2226
+ "&curvearrowright;",
2227
+ "&cuvee;",
2228
+ "&cuwed;",
2229
+ "&cwconint;",
2230
+ "&cwint;",
2231
+ "&cylcty;",
2232
+ "&dagger;",
2233
+ "&daleth;",
2234
+ "&darr;",
2235
+ "&dash;",
2236
+ "&dashv;",
2237
+ "&dbkarow;",
2238
+ "&dblac;",
2239
+ "&dcaron;",
2240
+ "&dcy;",
2241
+ "&dd;",
2242
+ "&ddagger;",
2243
+ "&ddarr;",
2244
+ "&ddotrahd;",
2245
+ "&ddotseq;",
2246
+ "&deg;",
2247
+ "&del;",
2248
+ "&delta;",
2249
+ "&demptyv;",
2250
+ "&dfisht;",
2251
+ "&dfr;",
2252
+ "&dhar;",
2253
+ "&dharl;",
2254
+ "&dharr;",
2255
+ "&diacriticalacute;",
2256
+ "&diacriticaldot;",
2257
+ "&diacriticaldoubleacute;",
2258
+ "&diacriticalgrave;",
2259
+ "&diacriticaltilde;",
2260
+ "&diam;",
2261
+ "&diamond;",
2262
+ "&diamondsuit;",
2263
+ "&diams;",
2264
+ "&die;",
2265
+ "&differentiald;",
2266
+ "&digamma;",
2267
+ "&disin;",
2268
+ "&div;",
2269
+ "&divide;",
2270
+ "&divideontimes;",
2271
+ "&divonx;",
2272
+ "&djcy;",
2273
+ "&dlcorn;",
2274
+ "&dlcrop;",
2275
+ "&dollar;",
2276
+ "&dopf;",
2277
+ "&dot;",
2278
+ "&dotdot;",
2279
+ "&doteq;",
2280
+ "&doteqdot;",
2281
+ "&dotequal;",
2282
+ "&dotminus;",
2283
+ "&dotplus;",
2284
+ "&dotsquare;",
2285
+ "&doublebarwedge;",
2286
+ "&doublecontourintegral;",
2287
+ "&doubledot;",
2288
+ "&doubledownarrow;",
2289
+ "&doubleleftarrow;",
2290
+ "&doubleleftrightarrow;",
2291
+ "&doublelefttee;",
2292
+ "&doublelongleftarrow;",
2293
+ "&doublelongleftrightarrow;",
2294
+ "&doublelongrightarrow;",
2295
+ "&doublerightarrow;",
2296
+ "&doublerighttee;",
2297
+ "&doubleuparrow;",
2298
+ "&doubleupdownarrow;",
2299
+ "&doubleverticalbar;",
2300
+ "&downarrow;",
2301
+ "&downarrowbar;",
2302
+ "&downarrowuparrow;",
2303
+ "&downbreve;",
2304
+ "&downdownarrows;",
2305
+ "&downharpoonleft;",
2306
+ "&downharpoonright;",
2307
+ "&downleftrightvector;",
2308
+ "&downleftteevector;",
2309
+ "&downleftvector;",
2310
+ "&downleftvectorbar;",
2311
+ "&downrightteevector;",
2312
+ "&downrightvector;",
2313
+ "&downrightvectorbar;",
2314
+ "&downtee;",
2315
+ "&downteearrow;",
2316
+ "&drbkarow;",
2317
+ "&drcorn;",
2318
+ "&drcrop;",
2319
+ "&dscr;",
2320
+ "&dscy;",
2321
+ "&dsol;",
2322
+ "&dstrok;",
2323
+ "&dtdot;",
2324
+ "&dtri;",
2325
+ "&dtrif;",
2326
+ "&duarr;",
2327
+ "&duhar;",
2328
+ "&dwangle;",
2329
+ "&dzcy;",
2330
+ "&dzigrarr;",
2331
+ "&eacute;",
2332
+ "&easter;",
2333
+ "&ecaron;",
2334
+ "&ecir;",
2335
+ "&ecirc;",
2336
+ "&ecolon;",
2337
+ "&ecy;",
2338
+ "&eddot;",
2339
+ "&edot;",
2340
+ "&ee;",
2341
+ "&efdot;",
2342
+ "&efr;",
2343
+ "&eg;",
2344
+ "&egrave;",
2345
+ "&egs;",
2346
+ "&egsdot;",
2347
+ "&el;",
2348
+ "&element;",
2349
+ "&elinters;",
2350
+ "&ell;",
2351
+ "&els;",
2352
+ "&elsdot;",
2353
+ "&emacr;",
2354
+ "&empty;",
2355
+ "&emptyset;",
2356
+ "&emptysmallsquare;",
2357
+ "&emptyv;",
2358
+ "&emptyverysmallsquare;",
2359
+ "&emsp13;",
2360
+ "&emsp14;",
2361
+ "&emsp;",
2362
+ "&eng;",
2363
+ "&ensp;",
2364
+ "&eogon;",
2365
+ "&eopf;",
2366
+ "&epar;",
2367
+ "&eparsl;",
2368
+ "&eplus;",
2369
+ "&epsi;",
2370
+ "&epsilon;",
2371
+ "&epsiv;",
2372
+ "&eqcirc;",
2373
+ "&eqcolon;",
2374
+ "&eqsim;",
2375
+ "&eqslantgtr;",
2376
+ "&eqslantless;",
2377
+ "&equal;",
2378
+ "&equals;",
2379
+ "&equaltilde;",
2380
+ "&equest;",
2381
+ "&equilibrium;",
2382
+ "&equiv;",
2383
+ "&equivdd;",
2384
+ "&eqvparsl;",
2385
+ "&erarr;",
2386
+ "&erdot;",
2387
+ "&escr;",
2388
+ "&esdot;",
2389
+ "&esim;",
2390
+ "&eta;",
2391
+ "&eth;",
2392
+ "&euml;",
2393
+ "&euro;",
2394
+ "&excl;",
2395
+ "&exist;",
2396
+ "&exists;",
2397
+ "&expectation;",
2398
+ "&exponentiale;",
2399
+ "&fallingdotseq;",
2400
+ "&fcy;",
2401
+ "&female;",
2402
+ "&ffilig;",
2403
+ "&fflig;",
2404
+ "&ffllig;",
2405
+ "&ffr;",
2406
+ "&filig;",
2407
+ "&filledsmallsquare;",
2408
+ "&filledverysmallsquare;",
2409
+ "&fjlig;",
2410
+ "&flat;",
2411
+ "&fllig;",
2412
+ "&fltns;",
2413
+ "&fnof;",
2414
+ "&fopf;",
2415
+ "&forall;",
2416
+ "&fork;",
2417
+ "&forkv;",
2418
+ "&fouriertrf;",
2419
+ "&fpartint;",
2420
+ "&frac12;",
2421
+ "&frac13;",
2422
+ "&frac14;",
2423
+ "&frac15;",
2424
+ "&frac16;",
2425
+ "&frac18;",
2426
+ "&frac23;",
2427
+ "&frac25;",
2428
+ "&frac34;",
2429
+ "&frac35;",
2430
+ "&frac38;",
2431
+ "&frac45;",
2432
+ "&frac56;",
2433
+ "&frac58;",
2434
+ "&frac78;",
2435
+ "&frasl;",
2436
+ "&frown;",
2437
+ "&fscr;",
2438
+ "&gacute;",
2439
+ "&gamma;",
2440
+ "&gammad;",
2441
+ "&gap;",
2442
+ "&gbreve;",
2443
+ "&gcedil;",
2444
+ "&gcirc;",
2445
+ "&gcy;",
2446
+ "&gdot;",
2447
+ "&ge;",
2448
+ "&gel;",
2449
+ "&geq;",
2450
+ "&geqq;",
2451
+ "&geqslant;",
2452
+ "&ges;",
2453
+ "&gescc;",
2454
+ "&gesdot;",
2455
+ "&gesdoto;",
2456
+ "&gesdotol;",
2457
+ "&gesl;",
2458
+ "&gesles;",
2459
+ "&gfr;",
2460
+ "&gg;",
2461
+ "&ggg;",
2462
+ "&gimel;",
2463
+ "&gjcy;",
2464
+ "&gl;",
2465
+ "&gla;",
2466
+ "&gle;",
2467
+ "&glj;",
2468
+ "&gnap;",
2469
+ "&gnapprox;",
2470
+ "&gne;",
2471
+ "&gneq;",
2472
+ "&gneqq;",
2473
+ "&gnsim;",
2474
+ "&gopf;",
2475
+ "&grave;",
2476
+ "&greaterequal;",
2477
+ "&greaterequalless;",
2478
+ "&greaterfullequal;",
2479
+ "&greatergreater;",
2480
+ "&greaterless;",
2481
+ "&greaterslantequal;",
2482
+ "&greatertilde;",
2483
+ "&gscr;",
2484
+ "&gsim;",
2485
+ "&gsime;",
2486
+ "&gsiml;",
2487
+ "&gt;",
2488
+ "&gtcc;",
2489
+ "&gtcir;",
2490
+ "&gtdot;",
2491
+ "&gtlpar;",
2492
+ "&gtquest;",
2493
+ "&gtrapprox;",
2494
+ "&gtrarr;",
2495
+ "&gtrdot;",
2496
+ "&gtreqless;",
2497
+ "&gtreqqless;",
2498
+ "&gtrless;",
2499
+ "&gtrsim;",
2500
+ "&gvertneqq;",
2501
+ "&gvne;",
2502
+ "&hacek;",
2503
+ "&hairsp;",
2504
+ "&half;",
2505
+ "&hamilt;",
2506
+ "&hardcy;",
2507
+ "&harr;",
2508
+ "&harrcir;",
2509
+ "&harrw;",
2510
+ "&hat;",
2511
+ "&hbar;",
2512
+ "&hcirc;",
2513
+ "&hearts;",
2514
+ "&heartsuit;",
2515
+ "&hellip;",
2516
+ "&hercon;",
2517
+ "&hfr;",
2518
+ "&hilbertspace;",
2519
+ "&hksearow;",
2520
+ "&hkswarow;",
2521
+ "&hoarr;",
2522
+ "&homtht;",
2523
+ "&hookleftarrow;",
2524
+ "&hookrightarrow;",
2525
+ "&hopf;",
2526
+ "&horbar;",
2527
+ "&horizontalline;",
2528
+ "&hscr;",
2529
+ "&hslash;",
2530
+ "&hstrok;",
2531
+ "&humpdownhump;",
2532
+ "&humpequal;",
2533
+ "&hybull;",
2534
+ "&hyphen;",
2535
+ "&iacute;",
2536
+ "&ic;",
2537
+ "&icirc;",
2538
+ "&icy;",
2539
+ "&idot;",
2540
+ "&iecy;",
2541
+ "&iexcl;",
2542
+ "&iff;",
2543
+ "&ifr;",
2544
+ "&igrave;",
2545
+ "&ii;",
2546
+ "&iiiint;",
2547
+ "&iiint;",
2548
+ "&iinfin;",
2549
+ "&iiota;",
2550
+ "&ijlig;",
2551
+ "&im;",
2552
+ "&imacr;",
2553
+ "&image;",
2554
+ "&imaginaryi;",
2555
+ "&imagline;",
2556
+ "&imagpart;",
2557
+ "&imath;",
2558
+ "&imof;",
2559
+ "&imped;",
2560
+ "&implies;",
2561
+ "&in;",
2562
+ "&incare;",
2563
+ "&infin;",
2564
+ "&infintie;",
2565
+ "&inodot;",
2566
+ "&int;",
2567
+ "&intcal;",
2568
+ "&integers;",
2569
+ "&integral;",
2570
+ "&intercal;",
2571
+ "&intersection;",
2572
+ "&intlarhk;",
2573
+ "&intprod;",
2574
+ "&invisiblecomma;",
2575
+ "&invisibletimes;",
2576
+ "&iocy;",
2577
+ "&iogon;",
2578
+ "&iopf;",
2579
+ "&iota;",
2580
+ "&iprod;",
2581
+ "&iquest;",
2582
+ "&iscr;",
2583
+ "&isin;",
2584
+ "&isindot;",
2585
+ "&isine;",
2586
+ "&isins;",
2587
+ "&isinsv;",
2588
+ "&isinv;",
2589
+ "&it;",
2590
+ "&itilde;",
2591
+ "&iukcy;",
2592
+ "&iuml;",
2593
+ "&jcirc;",
2594
+ "&jcy;",
2595
+ "&jfr;",
2596
+ "&jmath;",
2597
+ "&jopf;",
2598
+ "&jscr;",
2599
+ "&jsercy;",
2600
+ "&jukcy;",
2601
+ "&kappa;",
2602
+ "&kappav;",
2603
+ "&kcedil;",
2604
+ "&kcy;",
2605
+ "&kfr;",
2606
+ "&kgreen;",
2607
+ "&khcy;",
2608
+ "&kjcy;",
2609
+ "&kopf;",
2610
+ "&kscr;",
2611
+ "&laarr;",
2612
+ "&lacute;",
2613
+ "&laemptyv;",
2614
+ "&lagran;",
2615
+ "&lambda;",
2616
+ "&lang;",
2617
+ "&langd;",
2618
+ "&langle;",
2619
+ "&lap;",
2620
+ "&laplacetrf;",
2621
+ "&laquo;",
2622
+ "&larr;",
2623
+ "&larrb;",
2624
+ "&larrbfs;",
2625
+ "&larrfs;",
2626
+ "&larrhk;",
2627
+ "&larrlp;",
2628
+ "&larrpl;",
2629
+ "&larrsim;",
2630
+ "&larrtl;",
2631
+ "&lat;",
2632
+ "&latail;",
2633
+ "&late;",
2634
+ "&lates;",
2635
+ "&lbarr;",
2636
+ "&lbbrk;",
2637
+ "&lbrace;",
2638
+ "&lbrack;",
2639
+ "&lbrke;",
2640
+ "&lbrksld;",
2641
+ "&lbrkslu;",
2642
+ "&lcaron;",
2643
+ "&lcedil;",
2644
+ "&lceil;",
2645
+ "&lcub;",
2646
+ "&lcy;",
2647
+ "&ldca;",
2648
+ "&ldquo;",
2649
+ "&ldquor;",
2650
+ "&ldrdhar;",
2651
+ "&ldrushar;",
2652
+ "&ldsh;",
2653
+ "&le;",
2654
+ "&leftanglebracket;",
2655
+ "&leftarrow;",
2656
+ "&leftarrowbar;",
2657
+ "&leftarrowrightarrow;",
2658
+ "&leftarrowtail;",
2659
+ "&leftceiling;",
2660
+ "&leftdoublebracket;",
2661
+ "&leftdownteevector;",
2662
+ "&leftdownvector;",
2663
+ "&leftdownvectorbar;",
2664
+ "&leftfloor;",
2665
+ "&leftharpoondown;",
2666
+ "&leftharpoonup;",
2667
+ "&leftleftarrows;",
2668
+ "&leftrightarrow;",
2669
+ "&leftrightarrows;",
2670
+ "&leftrightharpoons;",
2671
+ "&leftrightsquigarrow;",
2672
+ "&leftrightvector;",
2673
+ "&lefttee;",
2674
+ "&leftteearrow;",
2675
+ "&leftteevector;",
2676
+ "&leftthreetimes;",
2677
+ "&lefttriangle;",
2678
+ "&lefttrianglebar;",
2679
+ "&lefttriangleequal;",
2680
+ "&leftupdownvector;",
2681
+ "&leftupteevector;",
2682
+ "&leftupvector;",
2683
+ "&leftupvectorbar;",
2684
+ "&leftvector;",
2685
+ "&leftvectorbar;",
2686
+ "&leg;",
2687
+ "&leq;",
2688
+ "&leqq;",
2689
+ "&leqslant;",
2690
+ "&les;",
2691
+ "&lescc;",
2692
+ "&lesdot;",
2693
+ "&lesdoto;",
2694
+ "&lesdotor;",
2695
+ "&lesg;",
2696
+ "&lesges;",
2697
+ "&lessapprox;",
2698
+ "&lessdot;",
2699
+ "&lesseqgtr;",
2700
+ "&lesseqqgtr;",
2701
+ "&lessequalgreater;",
2702
+ "&lessfullequal;",
2703
+ "&lessgreater;",
2704
+ "&lessgtr;",
2705
+ "&lessless;",
2706
+ "&lesssim;",
2707
+ "&lessslantequal;",
2708
+ "&lesstilde;",
2709
+ "&lfisht;",
2710
+ "&lfloor;",
2711
+ "&lfr;",
2712
+ "&lg;",
2713
+ "&lge;",
2714
+ "&lhar;",
2715
+ "&lhard;",
2716
+ "&lharu;",
2717
+ "&lharul;",
2718
+ "&lhblk;",
2719
+ "&ljcy;",
2720
+ "&ll;",
2721
+ "&llarr;",
2722
+ "&llcorner;",
2723
+ "&lleftarrow;",
2724
+ "&llhard;",
2725
+ "&lltri;",
2726
+ "&lmidot;",
2727
+ "&lmoust;",
2728
+ "&lmoustache;",
2729
+ "&lnap;",
2730
+ "&lnapprox;",
2731
+ "&lne;",
2732
+ "&lneq;",
2733
+ "&lneqq;",
2734
+ "&lnsim;",
2735
+ "&loang;",
2736
+ "&loarr;",
2737
+ "&lobrk;",
2738
+ "&longleftarrow;",
2739
+ "&longleftrightarrow;",
2740
+ "&longmapsto;",
2741
+ "&longrightarrow;",
2742
+ "&looparrowleft;",
2743
+ "&looparrowright;",
2744
+ "&lopar;",
2745
+ "&lopf;",
2746
+ "&loplus;",
2747
+ "&lotimes;",
2748
+ "&lowast;",
2749
+ "&lowbar;",
2750
+ "&lowerleftarrow;",
2751
+ "&lowerrightarrow;",
2752
+ "&loz;",
2753
+ "&lozenge;",
2754
+ "&lozf;",
2755
+ "&lpar;",
2756
+ "&lparlt;",
2757
+ "&lrarr;",
2758
+ "&lrcorner;",
2759
+ "&lrhar;",
2760
+ "&lrhard;",
2761
+ "&lrm;",
2762
+ "&lrtri;",
2763
+ "&lsaquo;",
2764
+ "&lscr;",
2765
+ "&lsh;",
2766
+ "&lsim;",
2767
+ "&lsime;",
2768
+ "&lsimg;",
2769
+ "&lsqb;",
2770
+ "&lsquo;",
2771
+ "&lsquor;",
2772
+ "&lstrok;",
2773
+ "&lt;",
2774
+ "&ltcc;",
2775
+ "&ltcir;",
2776
+ "&ltdot;",
2777
+ "&lthree;",
2778
+ "&ltimes;",
2779
+ "&ltlarr;",
2780
+ "&ltquest;",
2781
+ "&ltri;",
2782
+ "&ltrie;",
2783
+ "&ltrif;",
2784
+ "&ltrpar;",
2785
+ "&lurdshar;",
2786
+ "&luruhar;",
2787
+ "&lvertneqq;",
2788
+ "&lvne;",
2789
+ "&macr;",
2790
+ "&male;",
2791
+ "&malt;",
2792
+ "&maltese;",
2793
+ "&map;",
2794
+ "&mapsto;",
2795
+ "&mapstodown;",
2796
+ "&mapstoleft;",
2797
+ "&mapstoup;",
2798
+ "&marker;",
2799
+ "&mcomma;",
2800
+ "&mcy;",
2801
+ "&mdash;",
2802
+ "&mddot;",
2803
+ "&measuredangle;",
2804
+ "&mediumspace;",
2805
+ "&mellintrf;",
2806
+ "&mfr;",
2807
+ "&mho;",
2808
+ "&micro;",
2809
+ "&mid;",
2810
+ "&midast;",
2811
+ "&midcir;",
2812
+ "&middot;",
2813
+ "&minus;",
2814
+ "&minusb;",
2815
+ "&minusd;",
2816
+ "&minusdu;",
2817
+ "&minusplus;",
2818
+ "&mlcp;",
2819
+ "&mldr;",
2820
+ "&mnplus;",
2821
+ "&models;",
2822
+ "&mopf;",
2823
+ "&mp;",
2824
+ "&mscr;",
2825
+ "&mstpos;",
2826
+ "&mu;",
2827
+ "&multimap;",
2828
+ "&mumap;",
2829
+ "&nabla;",
2830
+ "&nacute;",
2831
+ "&nang;",
2832
+ "&nap;",
2833
+ "&nape;",
2834
+ "&napid;",
2835
+ "&napos;",
2836
+ "&napprox;",
2837
+ "&natur;",
2838
+ "&natural;",
2839
+ "&naturals;",
2840
+ "&nbsp;",
2841
+ "&nbump;",
2842
+ "&nbumpe;",
2843
+ "&ncap;",
2844
+ "&ncaron;",
2845
+ "&ncedil;",
2846
+ "&ncong;",
2847
+ "&ncongdot;",
2848
+ "&ncup;",
2849
+ "&ncy;",
2850
+ "&ndash;",
2851
+ "&ne;",
2852
+ "&nearhk;",
2853
+ "&nearr;",
2854
+ "&nearrow;",
2855
+ "&nedot;",
2856
+ "&negativemediumspace;",
2857
+ "&negativethickspace;",
2858
+ "&negativethinspace;",
2859
+ "&negativeverythinspace;",
2860
+ "&nequiv;",
2861
+ "&nesear;",
2862
+ "&nesim;",
2863
+ "&nestedgreatergreater;",
2864
+ "&nestedlessless;",
2865
+ "&newline;",
2866
+ "&nexist;",
2867
+ "&nexists;",
2868
+ "&nfr;",
2869
+ "&nge;",
2870
+ "&ngeq;",
2871
+ "&ngeqq;",
2872
+ "&ngeqslant;",
2873
+ "&nges;",
2874
+ "&ngg;",
2875
+ "&ngsim;",
2876
+ "&ngt;",
2877
+ "&ngtr;",
2878
+ "&ngtv;",
2879
+ "&nharr;",
2880
+ "&nhpar;",
2881
+ "&ni;",
2882
+ "&nis;",
2883
+ "&nisd;",
2884
+ "&niv;",
2885
+ "&njcy;",
2886
+ "&nlarr;",
2887
+ "&nldr;",
2888
+ "&nle;",
2889
+ "&nleftarrow;",
2890
+ "&nleftrightarrow;",
2891
+ "&nleq;",
2892
+ "&nleqq;",
2893
+ "&nleqslant;",
2894
+ "&nles;",
2895
+ "&nless;",
2896
+ "&nll;",
2897
+ "&nlsim;",
2898
+ "&nlt;",
2899
+ "&nltri;",
2900
+ "&nltrie;",
2901
+ "&nltv;",
2902
+ "&nmid;",
2903
+ "&nobreak;",
2904
+ "&nonbreakingspace;",
2905
+ "&nopf;",
2906
+ "&not;",
2907
+ "&notcongruent;",
2908
+ "&notcupcap;",
2909
+ "&notdoubleverticalbar;",
2910
+ "&notelement;",
2911
+ "&notequal;",
2912
+ "&notequaltilde;",
2913
+ "&notexists;",
2914
+ "&notgreater;",
2915
+ "&notgreaterequal;",
2916
+ "&notgreaterfullequal;",
2917
+ "&notgreatergreater;",
2918
+ "&notgreaterless;",
2919
+ "&notgreaterslantequal;",
2920
+ "&notgreatertilde;",
2921
+ "&nothumpdownhump;",
2922
+ "&nothumpequal;",
2923
+ "&notin;",
2924
+ "&notindot;",
2925
+ "&notine;",
2926
+ "&notinva;",
2927
+ "&notinvb;",
2928
+ "&notinvc;",
2929
+ "&notlefttriangle;",
2930
+ "&notlefttrianglebar;",
2931
+ "&notlefttriangleequal;",
2932
+ "&notless;",
2933
+ "&notlessequal;",
2934
+ "&notlessgreater;",
2935
+ "&notlessless;",
2936
+ "&notlessslantequal;",
2937
+ "&notlesstilde;",
2938
+ "&notnestedgreatergreater;",
2939
+ "&notnestedlessless;",
2940
+ "&notni;",
2941
+ "&notniva;",
2942
+ "&notnivb;",
2943
+ "&notnivc;",
2944
+ "&notprecedes;",
2945
+ "&notprecedesequal;",
2946
+ "&notprecedesslantequal;",
2947
+ "&notreverseelement;",
2948
+ "&notrighttriangle;",
2949
+ "&notrighttrianglebar;",
2950
+ "&notrighttriangleequal;",
2951
+ "&notsquaresubset;",
2952
+ "&notsquaresubsetequal;",
2953
+ "&notsquaresuperset;",
2954
+ "&notsquaresupersetequal;",
2955
+ "&notsubset;",
2956
+ "&notsubsetequal;",
2957
+ "&notsucceeds;",
2958
+ "&notsucceedsequal;",
2959
+ "&notsucceedsslantequal;",
2960
+ "&notsucceedstilde;",
2961
+ "&notsuperset;",
2962
+ "&notsupersetequal;",
2963
+ "&nottilde;",
2964
+ "&nottildeequal;",
2965
+ "&nottildefullequal;",
2966
+ "&nottildetilde;",
2967
+ "&notverticalbar;",
2968
+ "&npar;",
2969
+ "&nparallel;",
2970
+ "&nparsl;",
2971
+ "&npart;",
2972
+ "&npolint;",
2973
+ "&npr;",
2974
+ "&nprcue;",
2975
+ "&npre;",
2976
+ "&nprec;",
2977
+ "&npreceq;",
2978
+ "&nrarr;",
2979
+ "&nrarrc;",
2980
+ "&nrarrw;",
2981
+ "&nrightarrow;",
2982
+ "&nrtri;",
2983
+ "&nrtrie;",
2984
+ "&nsc;",
2985
+ "&nsccue;",
2986
+ "&nsce;",
2987
+ "&nscr;",
2988
+ "&nshortmid;",
2989
+ "&nshortparallel;",
2990
+ "&nsim;",
2991
+ "&nsime;",
2992
+ "&nsimeq;",
2993
+ "&nsmid;",
2994
+ "&nspar;",
2995
+ "&nsqsube;",
2996
+ "&nsqsupe;",
2997
+ "&nsub;",
2998
+ "&nsube;",
2999
+ "&nsubset;",
3000
+ "&nsubseteq;",
3001
+ "&nsubseteqq;",
3002
+ "&nsucc;",
3003
+ "&nsucceq;",
3004
+ "&nsup;",
3005
+ "&nsupe;",
3006
+ "&nsupset;",
3007
+ "&nsupseteq;",
3008
+ "&nsupseteqq;",
3009
+ "&ntgl;",
3010
+ "&ntilde;",
3011
+ "&ntlg;",
3012
+ "&ntriangleleft;",
3013
+ "&ntrianglelefteq;",
3014
+ "&ntriangleright;",
3015
+ "&ntrianglerighteq;",
3016
+ "&nu;",
3017
+ "&num;",
3018
+ "&numero;",
3019
+ "&numsp;",
3020
+ "&nvap;",
3021
+ "&nvdash;",
3022
+ "&nvge;",
3023
+ "&nvgt;",
3024
+ "&nvharr;",
3025
+ "&nvinfin;",
3026
+ "&nvlarr;",
3027
+ "&nvle;",
3028
+ "&nvlt;",
3029
+ "&nvltrie;",
3030
+ "&nvrarr;",
3031
+ "&nvrtrie;",
3032
+ "&nvsim;",
3033
+ "&nwarhk;",
3034
+ "&nwarr;",
3035
+ "&nwarrow;",
3036
+ "&nwnear;",
3037
+ "&oacute;",
3038
+ "&oast;",
3039
+ "&ocir;",
3040
+ "&ocirc;",
3041
+ "&ocy;",
3042
+ "&odash;",
3043
+ "&odblac;",
3044
+ "&odiv;",
3045
+ "&odot;",
3046
+ "&odsold;",
3047
+ "&oelig;",
3048
+ "&ofcir;",
3049
+ "&ofr;",
3050
+ "&ogon;",
3051
+ "&ograve;",
3052
+ "&ogt;",
3053
+ "&ohbar;",
3054
+ "&ohm;",
3055
+ "&oint;",
3056
+ "&olarr;",
3057
+ "&olcir;",
3058
+ "&olcross;",
3059
+ "&oline;",
3060
+ "&olt;",
3061
+ "&omacr;",
3062
+ "&omega;",
3063
+ "&omicron;",
3064
+ "&omid;",
3065
+ "&ominus;",
3066
+ "&oopf;",
3067
+ "&opar;",
3068
+ "&opencurlydoublequote;",
3069
+ "&opencurlyquote;",
3070
+ "&operp;",
3071
+ "&oplus;",
3072
+ "&or;",
3073
+ "&orarr;",
3074
+ "&ord;",
3075
+ "&order;",
3076
+ "&orderof;",
3077
+ "&ordf;",
3078
+ "&ordm;",
3079
+ "&origof;",
3080
+ "&oror;",
3081
+ "&orslope;",
3082
+ "&orv;",
3083
+ "&os;",
3084
+ "&oscr;",
3085
+ "&oslash;",
3086
+ "&osol;",
3087
+ "&otilde;",
3088
+ "&otimes;",
3089
+ "&otimesas;",
3090
+ "&ouml;",
3091
+ "&ovbar;",
3092
+ "&overbar;",
3093
+ "&overbrace;",
3094
+ "&overbracket;",
3095
+ "&overparenthesis;",
3096
+ "&par;",
3097
+ "&para;",
3098
+ "&parallel;",
3099
+ "&parsim;",
3100
+ "&parsl;",
3101
+ "&part;",
3102
+ "&partiald;",
3103
+ "&pcy;",
3104
+ "&percnt;",
3105
+ "&period;",
3106
+ "&permil;",
3107
+ "&perp;",
3108
+ "&pertenk;",
3109
+ "&pfr;",
3110
+ "&phi;",
3111
+ "&phiv;",
3112
+ "&phmmat;",
3113
+ "&phone;",
3114
+ "&pi;",
3115
+ "&pitchfork;",
3116
+ "&piv;",
3117
+ "&planck;",
3118
+ "&planckh;",
3119
+ "&plankv;",
3120
+ "&plus;",
3121
+ "&plusacir;",
3122
+ "&plusb;",
3123
+ "&pluscir;",
3124
+ "&plusdo;",
3125
+ "&plusdu;",
3126
+ "&pluse;",
3127
+ "&plusminus;",
3128
+ "&plusmn;",
3129
+ "&plussim;",
3130
+ "&plustwo;",
3131
+ "&pm;",
3132
+ "&poincareplane;",
3133
+ "&pointint;",
3134
+ "&popf;",
3135
+ "&pound;",
3136
+ "&pr;",
3137
+ "&prap;",
3138
+ "&prcue;",
3139
+ "&pre;",
3140
+ "&prec;",
3141
+ "&precapprox;",
3142
+ "&preccurlyeq;",
3143
+ "&precedes;",
3144
+ "&precedesequal;",
3145
+ "&precedesslantequal;",
3146
+ "&precedestilde;",
3147
+ "&preceq;",
3148
+ "&precnapprox;",
3149
+ "&precneqq;",
3150
+ "&precnsim;",
3151
+ "&precsim;",
3152
+ "&prime;",
3153
+ "&primes;",
3154
+ "&prnap;",
3155
+ "&prne;",
3156
+ "&prnsim;",
3157
+ "&prod;",
3158
+ "&product;",
3159
+ "&profalar;",
3160
+ "&profline;",
3161
+ "&profsurf;",
3162
+ "&prop;",
3163
+ "&proportion;",
3164
+ "&proportional;",
3165
+ "&propto;",
3166
+ "&prsim;",
3167
+ "&prurel;",
3168
+ "&pscr;",
3169
+ "&psi;",
3170
+ "&puncsp;",
3171
+ "&qfr;",
3172
+ "&qint;",
3173
+ "&qopf;",
3174
+ "&qprime;",
3175
+ "&qscr;",
3176
+ "&quaternions;",
3177
+ "&quatint;",
3178
+ "&quest;",
3179
+ "&questeq;",
3180
+ "&quot;",
3181
+ "&raarr;",
3182
+ "&race;",
3183
+ "&racute;",
3184
+ "&radic;",
3185
+ "&raemptyv;",
3186
+ "&rang;",
3187
+ "&rangd;",
3188
+ "&range;",
3189
+ "&rangle;",
3190
+ "&raquo;",
3191
+ "&rarr;",
3192
+ "&rarrap;",
3193
+ "&rarrb;",
3194
+ "&rarrbfs;",
3195
+ "&rarrc;",
3196
+ "&rarrfs;",
3197
+ "&rarrhk;",
3198
+ "&rarrlp;",
3199
+ "&rarrpl;",
3200
+ "&rarrsim;",
3201
+ "&rarrtl;",
3202
+ "&rarrw;",
3203
+ "&ratail;",
3204
+ "&ratio;",
3205
+ "&rationals;",
3206
+ "&rbarr;",
3207
+ "&rbbrk;",
3208
+ "&rbrace;",
3209
+ "&rbrack;",
3210
+ "&rbrke;",
3211
+ "&rbrksld;",
3212
+ "&rbrkslu;",
3213
+ "&rcaron;",
3214
+ "&rcedil;",
3215
+ "&rceil;",
3216
+ "&rcub;",
3217
+ "&rcy;",
3218
+ "&rdca;",
3219
+ "&rdldhar;",
3220
+ "&rdquo;",
3221
+ "&rdquor;",
3222
+ "&rdsh;",
3223
+ "&re;",
3224
+ "&real;",
3225
+ "&realine;",
3226
+ "&realpart;",
3227
+ "&reals;",
3228
+ "&rect;",
3229
+ "&reg;",
3230
+ "&reverseelement;",
3231
+ "&reverseequilibrium;",
3232
+ "&reverseupequilibrium;",
3233
+ "&rfisht;",
3234
+ "&rfloor;",
3235
+ "&rfr;",
3236
+ "&rhar;",
3237
+ "&rhard;",
3238
+ "&rharu;",
3239
+ "&rharul;",
3240
+ "&rho;",
3241
+ "&rhov;",
3242
+ "&rightanglebracket;",
3243
+ "&rightarrow;",
3244
+ "&rightarrowbar;",
3245
+ "&rightarrowleftarrow;",
3246
+ "&rightarrowtail;",
3247
+ "&rightceiling;",
3248
+ "&rightdoublebracket;",
3249
+ "&rightdownteevector;",
3250
+ "&rightdownvector;",
3251
+ "&rightdownvectorbar;",
3252
+ "&rightfloor;",
3253
+ "&rightharpoondown;",
3254
+ "&rightharpoonup;",
3255
+ "&rightleftarrows;",
3256
+ "&rightleftharpoons;",
3257
+ "&rightrightarrows;",
3258
+ "&rightsquigarrow;",
3259
+ "&righttee;",
3260
+ "&rightteearrow;",
3261
+ "&rightteevector;",
3262
+ "&rightthreetimes;",
3263
+ "&righttriangle;",
3264
+ "&righttrianglebar;",
3265
+ "&righttriangleequal;",
3266
+ "&rightupdownvector;",
3267
+ "&rightupteevector;",
3268
+ "&rightupvector;",
3269
+ "&rightupvectorbar;",
3270
+ "&rightvector;",
3271
+ "&rightvectorbar;",
3272
+ "&ring;",
3273
+ "&risingdotseq;",
3274
+ "&rlarr;",
3275
+ "&rlhar;",
3276
+ "&rlm;",
3277
+ "&rmoust;",
3278
+ "&rmoustache;",
3279
+ "&rnmid;",
3280
+ "&roang;",
3281
+ "&roarr;",
3282
+ "&robrk;",
3283
+ "&ropar;",
3284
+ "&ropf;",
3285
+ "&roplus;",
3286
+ "&rotimes;",
3287
+ "&roundimplies;",
3288
+ "&rpar;",
3289
+ "&rpargt;",
3290
+ "&rppolint;",
3291
+ "&rrarr;",
3292
+ "&rrightarrow;",
3293
+ "&rsaquo;",
3294
+ "&rscr;",
3295
+ "&rsh;",
3296
+ "&rsqb;",
3297
+ "&rsquo;",
3298
+ "&rsquor;",
3299
+ "&rthree;",
3300
+ "&rtimes;",
3301
+ "&rtri;",
3302
+ "&rtrie;",
3303
+ "&rtrif;",
3304
+ "&rtriltri;",
3305
+ "&ruledelayed;",
3306
+ "&ruluhar;",
3307
+ "&rx;",
3308
+ "&sacute;",
3309
+ "&sbquo;",
3310
+ "&sc;",
3311
+ "&scap;",
3312
+ "&scaron;",
3313
+ "&sccue;",
3314
+ "&sce;",
3315
+ "&scedil;",
3316
+ "&scirc;",
3317
+ "&scnap;",
3318
+ "&scne;",
3319
+ "&scnsim;",
3320
+ "&scpolint;",
3321
+ "&scsim;",
3322
+ "&scy;",
3323
+ "&sdot;",
3324
+ "&sdotb;",
3325
+ "&sdote;",
3326
+ "&searhk;",
3327
+ "&searr;",
3328
+ "&searrow;",
3329
+ "&sect;",
3330
+ "&semi;",
3331
+ "&seswar;",
3332
+ "&setminus;",
3333
+ "&setmn;",
3334
+ "&sext;",
3335
+ "&sfr;",
3336
+ "&sfrown;",
3337
+ "&sharp;",
3338
+ "&shchcy;",
3339
+ "&shcy;",
3340
+ "&shortdownarrow;",
3341
+ "&shortleftarrow;",
3342
+ "&shortmid;",
3343
+ "&shortparallel;",
3344
+ "&shortrightarrow;",
3345
+ "&shortuparrow;",
3346
+ "&shy;",
3347
+ "&sigma;",
3348
+ "&sigmaf;",
3349
+ "&sigmav;",
3350
+ "&sim;",
3351
+ "&simdot;",
3352
+ "&sime;",
3353
+ "&simeq;",
3354
+ "&simg;",
3355
+ "&simge;",
3356
+ "&siml;",
3357
+ "&simle;",
3358
+ "&simne;",
3359
+ "&simplus;",
3360
+ "&simrarr;",
3361
+ "&slarr;",
3362
+ "&smallcircle;",
3363
+ "&smallsetminus;",
3364
+ "&smashp;",
3365
+ "&smeparsl;",
3366
+ "&smid;",
3367
+ "&smile;",
3368
+ "&smt;",
3369
+ "&smte;",
3370
+ "&smtes;",
3371
+ "&softcy;",
3372
+ "&sol;",
3373
+ "&solb;",
3374
+ "&solbar;",
3375
+ "&sopf;",
3376
+ "&spades;",
3377
+ "&spadesuit;",
3378
+ "&spar;",
3379
+ "&sqcap;",
3380
+ "&sqcaps;",
3381
+ "&sqcup;",
3382
+ "&sqcups;",
3383
+ "&sqrt;",
3384
+ "&sqsub;",
3385
+ "&sqsube;",
3386
+ "&sqsubset;",
3387
+ "&sqsubseteq;",
3388
+ "&sqsup;",
3389
+ "&sqsupe;",
3390
+ "&sqsupset;",
3391
+ "&sqsupseteq;",
3392
+ "&squ;",
3393
+ "&square;",
3394
+ "&squareintersection;",
3395
+ "&squaresubset;",
3396
+ "&squaresubsetequal;",
3397
+ "&squaresuperset;",
3398
+ "&squaresupersetequal;",
3399
+ "&squareunion;",
3400
+ "&squarf;",
3401
+ "&squf;",
3402
+ "&srarr;",
3403
+ "&sscr;",
3404
+ "&ssetmn;",
3405
+ "&ssmile;",
3406
+ "&sstarf;",
3407
+ "&star;",
3408
+ "&starf;",
3409
+ "&straightepsilon;",
3410
+ "&straightphi;",
3411
+ "&strns;",
3412
+ "&sub;",
3413
+ "&subdot;",
3414
+ "&sube;",
3415
+ "&subedot;",
3416
+ "&submult;",
3417
+ "&subne;",
3418
+ "&subplus;",
3419
+ "&subrarr;",
3420
+ "&subset;",
3421
+ "&subseteq;",
3422
+ "&subseteqq;",
3423
+ "&subsetequal;",
3424
+ "&subsetneq;",
3425
+ "&subsetneqq;",
3426
+ "&subsim;",
3427
+ "&subsub;",
3428
+ "&subsup;",
3429
+ "&succ;",
3430
+ "&succapprox;",
3431
+ "&succcurlyeq;",
3432
+ "&succeeds;",
3433
+ "&succeedsequal;",
3434
+ "&succeedsslantequal;",
3435
+ "&succeedstilde;",
3436
+ "&succeq;",
3437
+ "&succnapprox;",
3438
+ "&succneqq;",
3439
+ "&succnsim;",
3440
+ "&succsim;",
3441
+ "&suchthat;",
3442
+ "&sum;",
3443
+ "&sung;",
3444
+ "&sup1;",
3445
+ "&sup2;",
3446
+ "&sup3;",
3447
+ "&sup;",
3448
+ "&supdot;",
3449
+ "&supdsub;",
3450
+ "&supe;",
3451
+ "&supedot;",
3452
+ "&superset;",
3453
+ "&supersetequal;",
3454
+ "&suphsol;",
3455
+ "&suphsub;",
3456
+ "&suplarr;",
3457
+ "&supmult;",
3458
+ "&supne;",
3459
+ "&supplus;",
3460
+ "&supset;",
3461
+ "&supseteq;",
3462
+ "&supseteqq;",
3463
+ "&supsetneq;",
3464
+ "&supsetneqq;",
3465
+ "&supsim;",
3466
+ "&supsub;",
3467
+ "&supsup;",
3468
+ "&swarhk;",
3469
+ "&swarr;",
3470
+ "&swarrow;",
3471
+ "&swnwar;",
3472
+ "&szlig;",
3473
+ "&tab;",
3474
+ "&target;",
3475
+ "&tau;",
3476
+ "&tbrk;",
3477
+ "&tcaron;",
3478
+ "&tcedil;",
3479
+ "&tcy;",
3480
+ "&tdot;",
3481
+ "&telrec;",
3482
+ "&tfr;",
3483
+ "&there4;",
3484
+ "&therefore;",
3485
+ "&theta;",
3486
+ "&thetasym;",
3487
+ "&thetav;",
3488
+ "&thickapprox;",
3489
+ "&thicksim;",
3490
+ "&thickspace;",
3491
+ "&thinsp;",
3492
+ "&thinspace;",
3493
+ "&thkap;",
3494
+ "&thksim;",
3495
+ "&thorn;",
3496
+ "&tilde;",
3497
+ "&tildeequal;",
3498
+ "&tildefullequal;",
3499
+ "&tildetilde;",
3500
+ "&times;",
3501
+ "&timesb;",
3502
+ "&timesbar;",
3503
+ "&timesd;",
3504
+ "&tint;",
3505
+ "&toea;",
3506
+ "&top;",
3507
+ "&topbot;",
3508
+ "&topcir;",
3509
+ "&topf;",
3510
+ "&topfork;",
3511
+ "&tosa;",
3512
+ "&tprime;",
3513
+ "&trade;",
3514
+ "&triangle;",
3515
+ "&triangledown;",
3516
+ "&triangleleft;",
3517
+ "&trianglelefteq;",
3518
+ "&triangleq;",
3519
+ "&triangleright;",
3520
+ "&trianglerighteq;",
3521
+ "&tridot;",
3522
+ "&trie;",
3523
+ "&triminus;",
3524
+ "&tripledot;",
3525
+ "&triplus;",
3526
+ "&trisb;",
3527
+ "&tritime;",
3528
+ "&trpezium;",
3529
+ "&tscr;",
3530
+ "&tscy;",
3531
+ "&tshcy;",
3532
+ "&tstrok;",
3533
+ "&twixt;",
3534
+ "&twoheadleftarrow;",
3535
+ "&twoheadrightarrow;",
3536
+ "&uacute;",
3537
+ "&uarr;",
3538
+ "&uarrocir;",
3539
+ "&ubrcy;",
3540
+ "&ubreve;",
3541
+ "&ucirc;",
3542
+ "&ucy;",
3543
+ "&udarr;",
3544
+ "&udblac;",
3545
+ "&udhar;",
3546
+ "&ufisht;",
3547
+ "&ufr;",
3548
+ "&ugrave;",
3549
+ "&uhar;",
3550
+ "&uharl;",
3551
+ "&uharr;",
3552
+ "&uhblk;",
3553
+ "&ulcorn;",
3554
+ "&ulcorner;",
3555
+ "&ulcrop;",
3556
+ "&ultri;",
3557
+ "&umacr;",
3558
+ "&uml;",
3559
+ "&underbar;",
3560
+ "&underbrace;",
3561
+ "&underbracket;",
3562
+ "&underparenthesis;",
3563
+ "&union;",
3564
+ "&unionplus;",
3565
+ "&uogon;",
3566
+ "&uopf;",
3567
+ "&uparrow;",
3568
+ "&uparrowbar;",
3569
+ "&uparrowdownarrow;",
3570
+ "&updownarrow;",
3571
+ "&upequilibrium;",
3572
+ "&upharpoonleft;",
3573
+ "&upharpoonright;",
3574
+ "&uplus;",
3575
+ "&upperleftarrow;",
3576
+ "&upperrightarrow;",
3577
+ "&upsi;",
3578
+ "&upsih;",
3579
+ "&upsilon;",
3580
+ "&uptee;",
3581
+ "&upteearrow;",
3582
+ "&upuparrows;",
3583
+ "&urcorn;",
3584
+ "&urcorner;",
3585
+ "&urcrop;",
3586
+ "&uring;",
3587
+ "&urtri;",
3588
+ "&uscr;",
3589
+ "&utdot;",
3590
+ "&utilde;",
3591
+ "&utri;",
3592
+ "&utrif;",
3593
+ "&uuarr;",
3594
+ "&uuml;",
3595
+ "&uwangle;",
3596
+ "&vangrt;",
3597
+ "&varepsilon;",
3598
+ "&varkappa;",
3599
+ "&varnothing;",
3600
+ "&varphi;",
3601
+ "&varpi;",
3602
+ "&varpropto;",
3603
+ "&varr;",
3604
+ "&varrho;",
3605
+ "&varsigma;",
3606
+ "&varsubsetneq;",
3607
+ "&varsubsetneqq;",
3608
+ "&varsupsetneq;",
3609
+ "&varsupsetneqq;",
3610
+ "&vartheta;",
3611
+ "&vartriangleleft;",
3612
+ "&vartriangleright;",
3613
+ "&vbar;",
3614
+ "&vbarv;",
3615
+ "&vcy;",
3616
+ "&vdash;",
3617
+ "&vdashl;",
3618
+ "&vee;",
3619
+ "&veebar;",
3620
+ "&veeeq;",
3621
+ "&vellip;",
3622
+ "&verbar;",
3623
+ "&vert;",
3624
+ "&verticalbar;",
3625
+ "&verticalline;",
3626
+ "&verticalseparator;",
3627
+ "&verticaltilde;",
3628
+ "&verythinspace;",
3629
+ "&vfr;",
3630
+ "&vltri;",
3631
+ "&vnsub;",
3632
+ "&vnsup;",
3633
+ "&vopf;",
3634
+ "&vprop;",
3635
+ "&vrtri;",
3636
+ "&vscr;",
3637
+ "&vsubne;",
3638
+ "&vsupne;",
3639
+ "&vvdash;",
3640
+ "&vzigzag;",
3641
+ "&wcirc;",
3642
+ "&wedbar;",
3643
+ "&wedge;",
3644
+ "&wedgeq;",
3645
+ "&weierp;",
3646
+ "&wfr;",
3647
+ "&wopf;",
3648
+ "&wp;",
3649
+ "&wr;",
3650
+ "&wreath;",
3651
+ "&wscr;",
3652
+ "&xcap;",
3653
+ "&xcirc;",
3654
+ "&xcup;",
3655
+ "&xdtri;",
3656
+ "&xfr;",
3657
+ "&xharr;",
3658
+ "&xi;",
3659
+ "&xlarr;",
3660
+ "&xmap;",
3661
+ "&xnis;",
3662
+ "&xodot;",
3663
+ "&xopf;",
3664
+ "&xoplus;",
3665
+ "&xotime;",
3666
+ "&xrarr;",
3667
+ "&xscr;",
3668
+ "&xsqcup;",
3669
+ "&xuplus;",
3670
+ "&xutri;",
3671
+ "&xvee;",
3672
+ "&xwedge;",
3673
+ "&yacute;",
3674
+ "&yacy;",
3675
+ "&ycirc;",
3676
+ "&ycy;",
3677
+ "&yen;",
3678
+ "&yfr;",
3679
+ "&yicy;",
3680
+ "&yopf;",
3681
+ "&yscr;",
3682
+ "&yucy;",
3683
+ "&yuml;",
3684
+ "&zacute;",
3685
+ "&zcaron;",
3686
+ "&zcy;",
3687
+ "&zdot;",
3688
+ "&zeetrf;",
3689
+ "&zerowidthspace;",
3690
+ "&zeta;",
3691
+ "&zfr;",
3692
+ "&zhcy;",
3693
+ "&zigrarr;",
3694
+ "&zopf;",
3695
+ "&zscr;",
3696
+ "&zwj;",
3697
+ "&zwnj;"
3698
+ ];
3699
+
3700
+ export { bundledElements as b, entities as e };
3701
+ //# sourceMappingURL=elements.js.map