documentation:
|
--- A type is an instance of class `HTML` if it has operations to construct
--- HTML documents, i.e., constructors for basic text strings and
--- structures with tags and attributes, update the attributes in structures,
--- and selectors for basic text and structures which returns the contents
--- of these elements (or `Nothing` for different elements).
|
methods:
|
["htmlText :: String -> a","htmlStruct :: String -> [(String, String)] -> [a] -> a","updAttrs :: ([(String, String)] -> [(String, String)]) -> a -> a","fromHtmlText :: a -> Prelude.Maybe String","fromHtmlStruct :: a -> Prelude.Maybe (String, [(String, String)], [a])"]
|