commit | 7f7ea50b836ee7a78dbcccfb28bea909cf28bf6b | [log] [tgz] |
---|---|---|
author | yosuke-furukawa <[email protected]> | Fri Dec 05 01:27:15 2014 |
committer | yosuke-furukawa <[email protected]> | Fri Dec 05 01:27:15 2014 |
tree | a42ebed19294437bda9812897811e1e82cac8621 | |
parent | 63fd64756accb63e272e1c4539e7bf66833cd21b [diff] |
Fix bug for unquoted keyword as true/false with comment
JSON5 is Yet another JSON.
$ brew tap yosuke-furukawa/json5 $ brew install json5
$ json5 -c path/to/test.json5 # output stdout $ json5 -c path/to/test.json5 -o path/to/test.json # output path/to/test.json
$ go get github.con/yosuke-furukawa/gojson5
package main
import (
"encoding/json"
"fmt"
"github.com/yosuke-furukawa/json5/encoding/json5"
"os"
)
func main() {
var data interface{}
dec := json5.NewDecoder(os.Stdin)
err := dec.Decode(&data)
if err != nil {
fmt.Println(err)
}
b, err := json.MarshalIndent(data, "", " ")
if err != nil {
fmt.Println(err)
}
fmt.Println(string(b))
}
// This is json5 demo // json5 can write comment in your json { key : "Key does not need double quote", // json specific "of" : "course we can use json as json5", trailing : "trailing comma is ok", }
$ json5 -c example.json5 # output #{ # "key ": "Key does not need double quote", # "of": "course we can use json as json5", # "trailing ": "trailing comma is ok" #}