pub type Markup = PreEscaped<String>;
A block of markup is a string that does not need to be escaped.
The html! macro expands to an expression of this type.
html!
struct Markup(pub String);
0: String