xml-basic-0.1.3: Basics for XML/HTML representation and processing

Safe HaskellSafe
LanguageHaskell98

Text.XML.Basic.Format

Synopsis

Documentation

class C object where #

Minimal complete definition

run

Methods

run :: object -> ShowS #

Instances

C Char # 

Methods

run :: Char -> ShowS #

C T # 

Methods

run :: T -> ShowS #

C object => C [object] # 

Methods

run :: [object] -> ShowS #

(Attribute name, C string) => C (T name string) # 

Methods

run :: T name string -> ShowS #

(Attribute name, C string) => C (T name string) # 

Methods

run :: T name string -> ShowS #

stringQuoted :: String -> ShowS #

Internet Explorer does not recognize ' and thus we have to format it literally.

name :: C name => name -> ShowS #

many :: (a -> ShowS) -> [a] -> ShowS #