xml-basic-0.1.3.2: Basics for XML/HTML representation and processing
Safe HaskellSafe-Inferred
LanguageHaskell98

Text.XML.Basic.Format

Synopsis

Documentation

class C object where Source #

Methods

run :: object -> ShowS Source #

Instances

Instances details
C T Source # 
Instance details

Defined in Text.XML.Basic.Character

Methods

run :: T -> ShowS Source #

C Char Source # 
Instance details

Defined in Text.XML.Basic.Format

Methods

run :: Char -> ShowS Source #

C object => C [object] Source # 
Instance details

Defined in Text.XML.Basic.Format

Methods

run :: [object] -> ShowS Source #

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

Defined in Text.XML.Basic.Attribute

Methods

run :: T name string -> ShowS Source #

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

Defined in Text.XML.Basic.ProcessingInstruction

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 #