github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/core/pretty/pretty_doc.yaml (about) 1 - DocumentID: pretty 2 Title: >+ 3 `pretty` 4 CategoryID: commands 5 Summary: >- 6 Prettifies JSON to make it human readable 7 Description: |- 8 Takes JSON from the STDIN and reformats it to make it human readable, then 9 outputs that to STDOUT. 10 Usage: |- 11 ``` 12 <stdin> -> pretty -> <stdout> 13 ``` 14 Examples: |- 15 ``` 16 ยป tout json {"Array":[1,2,3],"Map":{"String": "Foobar","Number":123.456}} -> pretty 17 { 18 "Array": [ 19 1, 20 2, 21 3 22 ], 23 "Map": { 24 "String": "Foobar", 25 "Number": 123.456 26 } 27 } 28 ``` 29 Flags: 30 Detail: |- 31 Synonyms: 32 Related: 33 - tout 34 - out 35 - format