CurryInfo: html2-3.5.0 / HTML.Base.HTML

definition:
class HTML a where
  htmlText       :: String -> a
  htmlStruct     :: String -> Attrs -> [a] -> a
  updAttrs       :: (Attrs -> Attrs) -> a -> a
  fromHtmlText   :: a -> Maybe String
  fromHtmlStruct :: a -> Maybe (String,Attrs,[a])
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])"]
name:
HTML