npm / ini

An ini parser/serializer in JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DRY nested sections?

AndersDJohnson opened this issue · comments

Do you support some syntax for DRY nested sections, e.g. indentation?

[a]
one = 1
  [b]
  two = 2

yielding:

{ "a": { "one": 1, "b": { "two": 2 } } }

instead of e.g.:

[a]
one = 1
[a.b]
two = 2