package yaml

Import Path
	github.com/ghodss/yaml (on go.dev)

Dependency Relation
	imports 12 packages, and imported by 3 packages

Involved Source Files Copyright 2013 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. yaml.go
Package-Level Type Names (total 4, none are exported)
/* sort exporteds by: | */
Package-Level Functions (total 17, in which 4 are exported)
Convert JSON to YAML.
Marshals the object into JSON then converts JSON to YAML and returns the YAML.
Converts YAML to JSON then uses JSON to unmarshal into an object.
Convert YAML to JSON. Since JSON is a subset of YAML, passing JSON through this method should be a no-op. Things YAML can do that are not supported by JSON: * In YAML you can have binary and null keys in your maps. These are invalid in JSON. (int and float keys are converted to strings.) * Binary data in YAML with the !!binary tag is not supported. If you want to use binary data with this library, encode the data as base64 as usual but do not use the !!binary tag in your YAML. This will ensure the original base64 encoded data makes it all the way through to the JSON.
Package-Level Variables (only one, which is unexported)
Package-Level Constants (total 3, none are exported)