The export/import functionality uses comma separators everywhere, but if the puzzle name in the first line contains a comma, the fields will be misinterpreted. We need either a way to escape commas, or do the typical CSV quoting (double quotes "protect" commas inside them, and you need to double your double quotes inside quoted strings).
The export/import functionality uses comma separators everywhere, but if the puzzle name in the first line contains a comma, the fields will be misinterpreted. We need either a way to escape commas, or do the typical CSV quoting (double quotes "protect" commas inside them, and you need to double your double quotes inside quoted strings).