html-minimalist-0.15: Minimalist haskell html library

Safe HaskellSafe-Inferred
LanguageHaskell98

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 -> Content Source

Ordinary character data, subject to escaping.

cdata_raw :: String -> Content Source

Raw character data, not subject to escaping.

Element constructors

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

Element contructor.

type Empty_Element_C = [Attr] -> Content Source

Empty element contructor.