Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 306 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 306 Bytes

md2csv

Convert markdown table to csv file

Install

npm install md2csv -g

Usage

The test.md can be converted to test.csv using the either of the following ways.

Command Line

md2csv test.md

Javascrip

const md2csv = require('md2csv');
md2csv('./test.md');