Open theblop opened 3 months ago
Hey so this works with at least version 0.9.0
some file
foo.yaml
---
key:
key2:
and then doing
jless -m line foo.yaml
yields
```json
{
"key": [
"value",
"value",
"value"
],
"key2": [
{
"object": {
"key": "value"
}
},
{
"object": {
"key": "value"
}
},
{
"object": {
"key": "value"
}
}
]
}
Is it possible to toggle comments in yaml files? It would be super useful for large commented yaml config files (e.g. helm chart value files)
Thanks!