ConfParser.jl icon indicating copy to clipboard operation
ConfParser.jl copied to clipboard

Don't parse commas as an array

Open whatsthecraic opened this issue 2 years ago • 0 comments

Values containing commas are always split into an array. I wish there was a way to escape commas or treat the whole value as a literal?

e,g. key="a, b, c" creates an array ["a", "b", "c"]; whereas the output wanted should be the literal "a, b, c".

See https://en.wikipedia.org/wiki/INI_file # Quoted values

whatsthecraic avatar Jan 16 '23 12:01 whatsthecraic