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

Minimal complete definition

run

Methods

run :: object -> ShowS Source #

Instances

C Char Source # 

Methods

run :: Char -> ShowS Source #

C T Source # 

Methods

run :: T -> ShowS Source #

C object => C [object] Source # 

Methods

run :: [object] -> ShowS Source #

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

Methods

run :: T name string -> ShowS Source #

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

Methods

run :: T name string -> ShowS Source #

stringQuoted :: String -> ShowS Source #

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

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

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