naoina / toml

TOML parser and encoder library for Golang
MIT License
294 stars 50 forks source link

Comments in arrays do not parse #10

Closed FooSoft closed 7 years ago

FooSoft commented 9 years ago

For example, the following snippet will fail to parse:

foo = [
    "a",
    "b", # comment
    "c"
]