csvmd 0.3.0

Convert from CSV to a Markdown table
Documentation
---
source: tests/integration_tests.rs
expression: normalized_result
---
Convert a CSV to a Markdown table, outputted to stdout

Usage: csvmd [OPTIONS] [FILE]

Arguments:
  [FILE]
          The path of the file to read - if not provided, reads from stdin

Options:
  -d, --delimiter <DELIMITER>
          The delimiter between columns
          
          [default: ,]

      --no-headers
          Treat the first row as data, not headers

      --stream
          Enable streaming mode to improve performance for large inputs

      --align <ALIGN>
          Customise the alignment of values within cells

          Possible values:
          - left:   Left-aligned headers
          - center: Center-aligned headers
          - centre: Center-aligned headers (British spelling)
          - right:  Right-aligned headers
          
          [default: left]

  -h, --help
          Print help (see a summary with '-h')

  -V, --version
          Print version