Rename readme for markdown
goproperties is a Go library for parsing Java property files.
The current version supports reading both ISO-8859-1 and UTF-8 encoded data.
A future version will also support Spring Framework style property expansion like
key = value
key2 = ${key}
v0.9 - Initial release
buf, err := ioutil.ReadFile(filename)
if err != nil {
// handle error
}
p, err := goproperties.Decode(buf)
if err != nil {
// handle error
}
value, ok := p.Get("key")
go get github.com/magiconair/goproperties