ConfParser.jl
ConfParser.jl copied to clipboard
Don't parse commas as an array
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