to json for formats

Converts table data into JSON text.

Signature

> to json {flags}

Flags

  • --raw, -r: remove all of the whitespace
  • --indent, -i {number}: specify indentation width
  • --tabs, -t {number}: specify indentation tab quantity

Input/output types:

inputoutput
anystring

Examples

Outputs a JSON string, with default indentation, representing the contents of this table

> [a b c] | to json
[
  "a",
  "b",
  "c"
]

Outputs a JSON string, with 4-space indentation, representing the contents of this table

> [Joe Bob Sam] | to json --indent 4
[
    "Joe",
    "Bob",
    "Sam"
]

Outputs an unformatted JSON string representing the contents of this table

> [1 2 3] | to json -r
[1,2,3]