The tag addresses the lucid-language to write HTML in Haskell.
Lucid is a haskell-based domain specific language to write HTML. Example usage:
λ> table_ (tr_ (td_ (p_ "Hello, World!"))) :: Html ()
generates the output:
<table><tr><td><p>Hello, World!</p></td></tr></table>