INI
Path:
/src/type/ini.coffeecompiled to/lib/type/ini.js
This is one of the oldest formats used for configurations. It is very simple but allows also complex objects through extended groups.
Common file extension ini.
; simple text
string = test
; add a simple list
list[] = 1
list[] = 2
list[] = 3
; add a group
[person]
name = Alexander Schilling
job = Developer
; add a subgroup
[city.address]
name = Stuttgart
Comments start with semicolon and grous/sections are marked by square brackets. The group name defines the object to add the properties to.
Format Options:
whitespace-Booleanshould spaces be put arround=(defaults to true)