-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | CSV Parser & Producer -- -- Comma is a simple CSV format parser and producer that closely follows -- the RFC4180 document. @package comma @version 1.0.1 module Text.Comma -- | Parse a block of text into a CSV table. comma :: Text -> Either String [[Text]] -- | Render a table of texts into a valid CSV output. uncomma :: [[Text]] -> Text