Shortcuts:⌘ KSearch?HelpD MDark modeG TAll tools
0 rows · 0 columns
Frequently Asked Questions
Why does every row start with [[rows]]?
Each CSV row is emitted as one TOML array-of-tables entry. The default table-array name is rows, but you can change it.
Can I use a nested table-array name like data.users?
Yes. Dotted names are supported, and segments that need quoting are quoted automatically.
Does it convert numbers and booleans to TOML values?
Yes. Numeric text becomes bare numbers, and true or false become TOML booleans.
What happens to empty cells or values like null?
In this implementation they serialize as empty strings, not a TOML null value.
Can I use it on CSV without headers?
Yes. If you turn headers off, the converter creates column_1, column_2, and so on.