html-minimalist-0.14: Minimalist haskell html library

Safe HaskellNone

Text.HTML.Light.Element

Contents

Description

Element constructors. The resulting elements are lifted to the Content data type, with the exception of the html element.

Synopsis

Content constructors

cdata :: String -> ContentSource

Ordinary character data, subject to escaping.

cdata_raw :: String -> ContentSource

Raw character data, not subject to escaping.

Element constructors

type Element_C = [Attr] -> [Content] -> ContentSource

Element contructor.

type Empty_Element_C = [Attr] -> ContentSource

Empty element contructor.