EYN

Command Palette

Search for a command to run...

Markdown Table Generator

Build markdown tables from CSV/JSON data with customizable formatting

Input Data
Paste your CSV or JSON data here
Format:
Style:
Alignment:
Markdown Table
Your generated markdown table will appear here
Table Generation Options
Customize how your markdown table is generated

Formatting Options

Table Structure

Export Options

Table Styles
Different markdown table formats and their use cases

Standard Table

Traditional markdown table with pipe separators. Most compatible with markdown renderers.

| Name | Age | City |
|------|-----|------|
| John | 30  | NYC  |
| Jane | 25  | LA   |

Compact Table

Minimal formatting without pipe separators. Cleaner appearance in some contexts.

Name | Age | City
-----|-----|-----
John | 30  | NYC
Jane | 25  | LA

Grid Table

ASCII-style table with borders. Good for documentation and technical writing.

+------+-----+------+
| Name | Age | City |
+------+-----+------+
| John | 30  | NYC  |
| Jane | 25  | LA   |
+------+-----+------+