1 // Package toml is a TOML parser and manipulation library. 2 // 3 // This version supports the specification as described in 4 // https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.5.0.md 5 // 6 // Marshaling 7 // 8 // Go-toml can marshal and unmarshal TOML documents from and to data 9 // structures. 10 // 11 // TOML document as a tree 12 // 13 // Go-toml can operate on a TOML document as a tree. Use one of the Load* 14 // functions to parse TOML data and obtain a Tree instance, then one of its 15 // methods to manipulate the tree. 16 // 17 // JSONPath-like queries 18 // 19 // The package github.com/pelletier/go-toml/query implements a system 20 // similar to JSONPath to quickly retrieve elements of a TOML document using a 21 // single expression. See the package documentation for more information. 22 // 23 package toml 24