A comprehensive skill for working with Markdown tables, from quick generation to advanced formatting and manipulation.
For simple data, create a table directly:
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
When given raw data (CSV, TSV, or space-separated):
Example - CSV to Markdown Table:
Input:
Name,Age,City
Alice,30,New York
Bob,25,London
Charlie,35,Tokyo
Output:
| Name | Age | City |
|---------|-----|----------|
| Alice | 30 | New York |
| Bob | 25 | London |
| Charlie | 35 | Tokyo |
| Name | Age | City |
|:--------|:----|:---------|
| Alice | 30 | New York |
| Name | Age | City |
|--------:|----:|---------:|
| Alice | 30 | New York |
| Name | Age | City |
|:-------:|:---:|:--------:|
| Alice | 30 | New York |
Insert at any position; default to end of table.
Specify column name and position; default to end.
Specify by index, header name, or content match.
Sort by a specific column in ascending or descending order.
Convert rows to columns and columns to rows.
or leave empty for visual clarityWhen needed, convert Markdown tables to:
- JSON array of objects
Always preserve data integrity during conversions.
版本历史
共 1 个版本
-
v1.0.0
当前
2026-05-21 15:41 安全 安全