Working with TOML
Parse: Simple
A = "hello"
B = 12
yq -oy '.' sample.tomlA: hello
B: 12Parse: Deep paths
person.name = "hello"
person.address = "12 cat st"
Encode: Scalar
Parse: inline table
Parse: Array Table
Parse: Array of Array Table
Parse: Empty Table
Last updated