What CSV the parser handles
- Delimiters — comma, semicolon, tab, pipe. Auto-detect uses field-count variance across the first ten lines.
- Quoted fields — wrap in double-quotes to embed delimiters, newlines or quotes (escape inner quotes by doubling).
- Line endings — Unix (LF) and Windows (CRLF) both work; the parser strips trailing CR before splitting.
- Header row — toggle on/off. With no header, columns get generic names (col1, col2…).