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

Safe HaskellSafe
LanguageHaskell98

Text.XML.Basic.Format

Synopsis

Documentation

class C object where #

Methods

run :: object -> ShowS #

Instances
C Char # 
Instance details

Defined in Text.XML.Basic.Format

Methods

run :: Char -> ShowS #

C T # 
Instance details

Defined in Text.XML.Basic.Character

Methods

run :: T -> ShowS #

C object => C [object] # 
Instance details

Defined in Text.XML.Basic.Format

Methods

run :: [object] -> ShowS #

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

Defined in Text.XML.Basic.Attribute

Methods

run :: T name string -> ShowS #

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

Defined in Text.XML.Basic.ProcessingInstruction

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 #