-- | -- Predefined XML Entity References -- -- This module defines a table of all -- predefined XML entity references module Text.XML.HXT.Parser.XmlEntities ( xmlEntities ) where -- ------------------------------------------------------------ -- | -- list of predefined XML entity names and their unicode values xmlEntities :: [(String, Int)] xmlEntities :: [(String, Int)] xmlEntities = [ (String "quot", Int 34) , (String "amp", Int 38) , (String "lt", Int 60) , (String "gt", Int 62) , (String "apos", Int 39) ] -- ------------------------------------------------------------