Install
openclaw skills install markdown-table-generatorGenerate, format, and manipulate Markdown tables with support for alignment, conversion from CSV/TSV, sorting, and transposition. Use when users need to create tables from data, format existing tables nicely, convert between table formats, sort table rows, or perform table operations like adding/removing columns and rows.
openclaw skills install markdown-table-generatorA 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:
<table>Always preserve data integrity during conversions.