Copyright | (c) Galois Inc. 2007 |
---|---|
License | BSD3 |
Maintainer | Iavor S. Diatchki <diatchki@galois.com> |
Stability | provisional |
Portability | Output handling for the lightweight XML lib. |
Safe Haskell | Safe |
Language | Haskell98 |
Synopsis
- showTopElement :: Element -> String
- showContent :: Content -> String
- showElement :: Element -> String
- showCData :: CData -> String
- showQName :: QName -> String
- showAttr :: Attr -> String
- ppTopElement :: Element -> String
- ppContent :: Content -> String
- ppElement :: Element -> String
- ppcTopElement :: ConfigPP -> Element -> String
- ppcContent :: ConfigPP -> Content -> String
- ppcElement :: ConfigPP -> Element -> String
- data ConfigPP
- defaultConfigPP :: ConfigPP
- prettyConfigPP :: ConfigPP
- useShortEmptyTags :: (QName -> Bool) -> ConfigPP -> ConfigPP
- useExtraWhiteSpace :: Bool -> ConfigPP -> ConfigPP
- tagEnd :: QName -> ShowS
- xml_header :: String
Documentation
showContent :: Content -> String Source #
showElement :: Element -> String Source #
ppTopElement :: Element -> String Source #
Pretty printing renders XML documents faithfully, with the exception that whitespace may be added/removed in non-verbatim character data.
ppcTopElement :: ConfigPP -> Element -> String Source #
Pretty printing renders XML documents faithfully, with the exception that whitespace may be added/removed in non-verbatim character data.
defaultConfigPP :: ConfigPP Source #
Default pretty orinting configuration. * Always use abbreviate empty tags.
prettyConfigPP :: ConfigPP Source #
A configuration that tries to make things pretty (possibly at the cost of changing the semantics a bit through adding white space.)
useExtraWhiteSpace :: Bool -> ConfigPP -> ConfigPP Source #
Specify if we should use extra white-space to make document more readable. WARNING: This adds additional white-space to text elements, and so it may change the meaning of the document.
xml_header :: String Source #
The XML 1.0 header