From 2f98ff832c028a7007e59c04b3f2d74bd49436f2 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Fri, 31 Mar 2023 10:24:19 +1100 Subject: [PATCH] toml docs --- usage/toml.md | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/usage/toml.md b/usage/toml.md index b40b827c..1ebe2336 100644 --- a/usage/toml.md +++ b/usage/toml.md @@ -88,24 +88,3 @@ owner: suburb: nice ``` -## Parse: with header -Given a sample.toml file of: -```toml - -[servers] - -[servers.alpha] -ip = "10.0.0.1" - -``` -then -```bash -yq -oy '.' sample.toml -``` -will output -```yaml -servers: - alpha: - ip: 10.0.0.1 -``` -