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
Roundtrip: inline table attribute
Roundtrip: table section
Roundtrip: array of tables
Roundtrip: arrays and scalars
Roundtrip: simple
Roundtrip: deep paths
Roundtrip: empty array
Roundtrip: sample table
Roundtrip: empty table
Roundtrip: comments
Roundtrip: sample from web
Encode: Simple mapping produces table section
Last updated