You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of, thank you for this library. It really works like a charm.
I used this library to retrieve and store data for a .Xrc file. Kind of like you may have seen a .npmrc with npm.
My concern is that the output formatting I expect is a little different than the current output from this lib.
I would like to go from this:
[section]
key=value
To this:
[section]
key = "value"
Notice the subtle differences:
The value has double-quotes around it
Each key-value pair inside a section is indented
The spaces between "=" and key/value
The text was updated successfully, but these errors were encountered:
First of, thank you for this library. It really works like a charm.
I used this library to retrieve and store data for a
.Xrc
file. Kind of like you may have seen a.npmrc
with npm.My concern is that the output formatting I expect is a little different than the current output from this lib.
I would like to go from this:
To this:
Notice the subtle differences:
The text was updated successfully, but these errors were encountered: