@@ -582,6 +582,7 @@ type core_phrasing =
582
582
| `Img | `Img_interactive
583
583
| `Picture
584
584
| `PCDATA
585
+ | `Meta_with_itemprop
585
586
]
586
587
587
588
type core_phrasing_without_noscript =
@@ -622,6 +623,7 @@ type core_phrasing_without_noscript =
622
623
| `B
623
624
| `Abbr
624
625
| `PCDATA
626
+ | `Meta_with_itemprop
625
627
]
626
628
type core_phrasing_without_interactive =
627
629
[
@@ -657,6 +659,7 @@ type core_phrasing_without_interactive =
657
659
| `B
658
660
| `Abbr
659
661
| `PCDATA
662
+ | `Meta_with_itemprop
660
663
]
661
664
662
665
type core_phrasing_without_media =
@@ -697,6 +700,7 @@ type core_phrasing_without_media =
697
700
| `B
698
701
| `Abbr
699
702
| `PCDATA
703
+ | `Meta_with_itemprop
700
704
]
701
705
702
706
type phrasing_without_noscript =
@@ -733,9 +737,10 @@ type (+'a, +'b) between_phrasing_and_phrasing_without_interactive =
733
737
phrasing ,
734
738
phrasing_without_media ) transparent
735
739
> `Abbr `B `Bdo `Br `Canvas `Cite `Code `Command
736
- `Datalist `Del `Dfn `Em `I `Img `Picture `Ins `Kbd `Map `Mark `Meter
737
- `Noscript `Object `PCDATA `Progress `Q `Ruby `Samp `Script
738
- `Small `Span `Strong `Sub `Sup `Svg `Template `Time `U `Var `Wbr ] as 'a )
740
+ `Datalist `Del `Dfn `Em `I `Img `Picture `Ins `Kbd `Map `Mark
741
+ `Meta_with_itemprop `Meter `Noscript `Object `PCDATA `Progress `Q `Ruby
742
+ `Samp `Script `Small `Span `Strong `Sub `Sup `Svg `Template `Time `U
743
+ `Var `Wbr ] as 'a )
739
744
740
745
(* * Phrasing without the interactive markups *)
741
746
type phrasing_without_dfn =
@@ -772,6 +777,7 @@ type phrasing_without_dfn =
772
777
| `B
773
778
| `Abbr
774
779
| `PCDATA
780
+ | `Meta_with_itemprop
775
781
| (phrasing_without_interactive , phrasing_without_noscript ,
776
782
phrasing_without_dfn , phrasing_without_media ) transparent
777
783
]
@@ -810,6 +816,7 @@ type phrasing_without_label =
810
816
| `B
811
817
| `Abbr
812
818
| `PCDATA
819
+ | `Meta_with_itemprop
813
820
| (phrasing_without_interactive , phrasing_without_noscript ,
814
821
phrasing_without_label , phrasing_without_media ) transparent
815
822
]
@@ -851,6 +858,7 @@ type phrasing_without_progress =
851
858
| `B
852
859
| `Abbr
853
860
| `PCDATA
861
+ | `Meta_with_itemprop
854
862
| (phrasing_without_interactive , phrasing_without_noscript ,
855
863
phrasing_without_progress , phrasing_without_media ) transparent
856
864
]
@@ -889,6 +897,7 @@ type phrasing_without_time =
889
897
| `B
890
898
| `Abbr
891
899
| `PCDATA
900
+ | `Meta_with_itemprop
892
901
| (phrasing_without_interactive , phrasing_without_noscript ,
893
902
phrasing_without_time , phrasing_without_media ) transparent
894
903
]
@@ -930,6 +939,7 @@ type phrasing_without_meter =
930
939
| `B
931
940
| `Abbr
932
941
| `PCDATA
942
+ | `Meta_with_itemprop
933
943
| (phrasing_without_interactive , phrasing_without_noscript ,
934
944
phrasing_without_meter , phrasing_without_media ) transparent
935
945
]
@@ -2287,6 +2297,8 @@ type noscript_attrib = [ | common ]
2287
2297
(* NAME: meta, KIND: nullary, TYPE: [= common | `Http_equiv | `Name | `Content | `Charset ], [=`Meta], ARG: notag, ATTRIB: OUT: [=`Meta] *)
2288
2298
type meta = [ | `Meta ]
2289
2299
2300
+ type meta_with_itemprop = [ | `Meta_with_itemprop ]
2301
+
2290
2302
type meta_content = notag
2291
2303
2292
2304
type meta_content_fun = notag
0 commit comments