HTMLContentModel
reexport
enum HTMLContentModel {Â Â block = "block";Â Â mixed = "mixed";Â Â none = "none";Â Â textual = "textual";}Defined in
@native-html/transient-render-engineThe content model associated with a tag determines how this tag should be translated in the Transient Render Tree.
Members#
block#
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"