commit | 50a231e0b10fb70fad5428224a9e227106c46b43 | [log] [tgz] |
---|---|---|
author | yosuke-furukawa <yosuke.furukawa@gmail.com> | Wed Dec 03 05:29:01 2014 |
committer | yosuke-furukawa <yosuke.furukawa@gmail.com> | Wed Dec 03 05:29:01 2014 |
tree | 27213b5e68ecdef7631543c94b563720cc45e088 |
initial commit
JSON5 is Yet another JSON.
package main
import (
"encoding/json"
"fmt"
"github.com/yosuke-furukawa/gojson5/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", }
$ gojson5 example.json5 # output #{ # "key ": "Key does not need double quote", # "of": "course we can use json as json5", # "trailing ": "trailing comma is ok" #}