INI files are a widely used format for storing text data. They have a specific format which must be adhered to.
The format is:
[section name]
name1=value1
name2=value2
[another section name]
name3=value3
name4=value4
All other text is ignored. Values can contain spaces.
The section name must be unique and is required. Each name in a section must be unique, and must contain a = sign followed by a value. The value maybe blank if required.