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
Honestly, I'm not too familiar with the ini format. Looking around, it sounds like the MS implementation does not support end of line comments, but other ini implementations do support it. It would be nice if this library had the option to disable end of line comments.
In the meantime, it looks like I can get by using a regex to escape semicolon's that are not at the start of a line.
This is similar to #142. You can try my fork, ini-win, which aims to be more compatible with the way Windows handles ini files. Windows only supports whole line comments, and so does my fork, so it fixes this issue.
Here's a simple reproduction of this Issue:
Actual result:
Semicolon's in a quoted string in a list are parsed as a comment.
Expected result:
Semicolon's in a quoted string should not be parsed as a comment.
The text was updated successfully, but these errors were encountered: