| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Drasil.Data.Formats.CSV.Render
Contents
Synopsis
- data CSVRenderOptions
- data DoubleQuotationPolicy
- csvRenderOpts :: DoubleQuotationPolicy -> CSVRenderOptions
- renderCSV :: CSVRenderOptions -> CSV -> Doc ann
Rendering
data CSVRenderOptions Source #
Options for rendering a CSV.
data DoubleQuotationPolicy Source #
Cell-wrapping policy: How often should cells be wrapped in double quotes?
Constructors
| Minimal | Only when necessary, i.e., a cell contains either double quotes, a comma, CR, LF, or CRLF. |
| Everywhere | Everywhere. |