Skip to main content

HTMLContentModel

reexport
enum HTMLContentModel {
  block = "block";
  mixed = "mixed";
  none = "none";
  textual = "textual";
}

The 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"