stevemarple / IniFile

Arduino library to parse ini files.
GNU Lesser General Public License v2.1
87 stars 45 forks source link

Inline comments #20

Closed OscarVanL closed 5 years ago

OscarVanL commented 5 years ago

Hi, I noticed inline comments are not permitted.

This doesn't work:

testFrequency=60 # How frequently the test should be conducted, in seconds

Whereas this does:

# How frequently the test should be conducted, in seconds
testFrequency=60 

I'd love to be able to use the former as I think it looks neater.

stevemarple commented 5 years ago

Inline comments are not supported as that would prevent the # or ; character being used in the value string.

OscarVanL commented 5 years ago

Fair enough, thanks :)