Merge remote-tracking branch 'origin/master' into pkg-cf
tree: c5748be011e47b112e248c66fd7c464b3eb759bb
  1. cf/
  2. cmd/
  3. .gitlab-ci.yml
  4. .travis.yml
  5. bplist.go
  6. bplist_generator.go
  7. bplist_parser.go
  8. bplist_test.go
  9. common_data_for_test.go
  10. decode.go
  11. decode_test.go
  12. doc.go
  13. encode.go
  14. encode_test.go
  15. example_custom_marshaler_test.go
  16. fuzz.go
  17. go16_test.go
  18. go17_test.go
  19. invalid_bplist_test.go
  20. invalid_text_test.go
  21. LICENSE
  22. marshal.go
  23. marshal_test.go
  24. must.go
  25. plist.go
  26. README.md
  27. text_generator.go
  28. text_parser.go
  29. text_tables.go
  30. text_test.go
  31. typeinfo.go
  32. unmarshal.go
  33. unmarshal_test.go
  34. util.go
  35. xml_generator.go
  36. xml_parser.go
  37. xml_test.go
  38. zerocopy.go
  39. zerocopy_appengine.go
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"})
}