github.com/keysonzzz/kmg@v0.0.0-20151121023212-05317bfd7d39/encoding/kmgYaml/README.md (about) 1 kmgYaml 2 ================= 3 origin code come from "launchpad.net/goyaml" 4 5 add following bugfix: 6 * improve: use github for source control. 7 * improve: struct key name will not change when Unmarshal and Marshal by default(goyaml will change them to lowercase). 8 * improve: chinese string will not Marshal to "\uxxxx" 9 * bug:"1" can not unmarshal to float64 problem 10 * improve: Can unmarshal array problem now. 11 * improve: Can unmarshal/marshal time.Time correct. 12 * bug: use "总数 :" as value of a map will generate a not valid yaml ,fixed in yaml_emitter_analyze_scalar():w = width(value[i]) //bug origin width(value[0]) 13 * improve: Can understand golang inline of struct like encoding/json