ini-parser
ini-parser copied to clipboard
NewLineStr only in KeyValue pairs, not for sections.
Is it possible to achieve this?
I need to respect a file format where the section has no leading spaces, while the key-value pairs have 4 leading spaces.
[Section]
key=value
key2=value2
I've tried to override the iniDataParser class, but it seems there isn't any method there that could help me. No other overridable class seem to help here.
Is it possible at all?