HTMLContentModel
reexport
enum
HTMLContentModel
{
 Â
block
=
"block"
;
 Â
mixed
=
"mixed"
;
 Â
none
=
"none"
;
 Â
textual
=
"textual"
;
}
Defined in
@native-html/transient-render-engine
The content model associated with a tag determines how this tag should be translated in the Transient Render Tree.
#
Membersblock
#
block
=
"block"
;
Translatable to TBlock.
Default: "block"
mixed
#
mixed
=
"mixed"
;
Translatable to TBlock, TPhrasing and TText
Default: "mixed"
none
#
none
=
"none"
;
Translatable to TEmpty
Default: "none"
textual
#
textual
=
"textual"
;
Translatable to TPhrasing and TText
Default: "textual"