Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.5
-
None
Description
INIConfiguration does not support line continuation. See http://en.wikipedia.org/wiki/INI_file#Escapes for a description. Using INIConfiguration to read the following file:
[section1]
dotted.var1 = \
foo
var2 = doodle
Produces the following contents:
section1.dotted.var1= \
section1.foo=
I expected the following contents:
section1.dotted.var1= foo