Markdown Table Generator
/install markdown-table-generator
Markdown Table Generator
A comprehensive skill for working with Markdown tables, from quick generation to advanced formatting and manipulation.
Quick Start
Generate a Basic Table
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 |
Generate from Data
When given raw data (CSV, TSV, or space-separated):
- Parse the input data
- Detect headers if present
- Determine column widths for proper alignment
- Generate a nicely formatted table
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 |
Alignment Options
Left Align (Default)
| Name | Age | City |
|:--------|:----|:---------|
| Alice | 30 | New York |
Right Align
| Name | Age | City |
|--------:|----:|---------:|
| Alice | 30 | New York |
Center Align
| Name | Age | City |
|:-------:|:---:|:--------:|
| Alice | 30 | New York |
Common Operations
Add a Row
Insert at any position; default to end of table.
Add a Column
Specify column name and position; default to end.
Remove a Row/Column
Specify by index, header name, or content match.
Sort Rows
Sort by a specific column in ascending or descending order.
Transpose Table
Convert rows to columns and columns to rows.
Best Practices
- Column Widths: Always pad cells so pipes align vertically for readability
- Headers: Keep headers descriptive and concise
- Empty Cells: Use
or leave empty for visual clarity - Consistency: Use the same alignment style throughout a document
- Readability: Prefer left-aligned text, right-aligned numbers, centered short values
Conversion to Other Formats
When needed, convert Markdown tables to:
- CSV
- TSV
- HTML
\x3Ctable> - JSON array of objects
Always preserve data integrity during conversions.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install markdown-table-generator - 安装完成后,直接呼叫该 Skill 的名称或使用
/markdown-table-generator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Markdown Table Generator 是什么?
Generate, format, and manipulate Markdown tables with support for alignment, conversion from CSV/TSV, sorting, and transposition. Use when users need to crea... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 41 次。
如何安装 Markdown Table Generator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install markdown-table-generator」即可一键安装,无需额外配置。
Markdown Table Generator 是免费的吗?
是的,Markdown Table Generator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Markdown Table Generator 支持哪些平台?
Markdown Table Generator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Markdown Table Generator?
由 terrycarter1985(@terrycarter1985)开发并维护,当前版本 v1.0.0。