A representation of HTML, used to render Verso to the web.
Constructors
Verso.Output.Html.text (escape : Bool) (string : String) : Html
Textual content. If escape is true, then characters such as '&' are escaped to entities such
as "&" during rendering.
Verso.Output.Html.tag (name : String) (attrs : Array (String Γ String)) (contents : Html) : Html
A tag with the given name and attributes.
Verso.Output.Html.seq (contents : Array Html) : Html
A sequence of HTML values.