lovasoa / elm-csv

A CSV parser for Elm.

Home Page:https://package.elm-lang.org/packages/lovasoa/elm-csv/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parsing \n (new line) in header

turboMaCk opened this issue · comments

There seems to be a bug in this parser.

for input like:

first,"second
column"
1,2

the header should be parsed as "first" and "second\n column"since new line is wrapped in". But this parser considers second column to end after word "second" and thinks column"` is the first row.