fancl 9304cbd718 add custom organize 2 years ago
..
.gitignore 9304cbd718 add custom organize 2 years ago
.gitlab-ci.yml 9304cbd718 add custom organize 2 years ago
LICENSE 9304cbd718 add custom organize 2 years ago
README.md 9304cbd718 add custom organize 2 years ago
bplist.go 9304cbd718 add custom organize 2 years ago
bplist_generator.go 9304cbd718 add custom organize 2 years ago
bplist_parser.go 9304cbd718 add custom organize 2 years ago
decode.go 9304cbd718 add custom organize 2 years ago
doc.go 9304cbd718 add custom organize 2 years ago
encode.go 9304cbd718 add custom organize 2 years ago
fuzz.go 9304cbd718 add custom organize 2 years ago
marshal.go 9304cbd718 add custom organize 2 years ago
must.go 9304cbd718 add custom organize 2 years ago
plist.go 9304cbd718 add custom organize 2 years ago
plist_types.go 9304cbd718 add custom organize 2 years ago
text_generator.go 9304cbd718 add custom organize 2 years ago
text_parser.go 9304cbd718 add custom organize 2 years ago
text_tables.go 9304cbd718 add custom organize 2 years ago
typeinfo.go 9304cbd718 add custom organize 2 years ago
unmarshal.go 9304cbd718 add custom organize 2 years ago
util.go 9304cbd718 add custom organize 2 years ago
xml_generator.go 9304cbd718 add custom organize 2 years ago
xml_parser.go 9304cbd718 add custom organize 2 years ago
zerocopy.go 9304cbd718 add custom organize 2 years ago
zerocopy_appengine.go 9304cbd718 add custom organize 2 years ago

README.md

plist - A pure Go property list transcoder coverage report

INSTALL

$ go get howett.net/plist

FEATURES

  • Supports encoding/decoding property lists (Apple XML, Apple Binary, OpenStep and GNUStep) from/to arbitrary Go types

USE

package main
import (
	"howett.net/plist"
	"os"
)
func main() {
	encoder := plist.NewEncoder(os.Stdout)
	encoder.Encode(map[string]string{"hello": "world"})
}