mre/csvtable

Convert CSV strings to Markdown tables

dev-master 2019-10-21 13:16 UTC

This package is not auto-updated.

Last update: 2024-04-27 12:38:17 UTC


README

This creates a Markdown table out of CSV input.

Input

  First Header,Second Header
  Cell,Content Cell
  Content Cell,Another one

Output

  First Header|Second Header
  ------------|-------------
  Cell        |Content Cell 
  Content Cell|Another one