Clone this repo:
  1. 6077112 README: master->main by Dustin L. Howett · 2 years, 8 months ago master v1.0.0
  2. f9c297d mod: add a compat version of go 1.12; tidy by Dustin L. Howett · 2 years, 8 months ago
  3. c62a4ea mod: commit go.sum (oops) by Dustin L. Howett · 2 years, 8 months ago
  4. 1454fab text: add ' to the runes to be quoted when using OpenStep format (#64) by lpusok · 3 years, 7 months ago
  5. 117a925 unmarshal: replace manual array element copy with reflect.Copy by Dustin L. Howett · 3 years, 9 months ago

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"})
}