Loading...
Loading...
Generate well-formatted markdown tables from data. Use when creating documentation tables or formatting tabular data.
npx skill4agent add ntaksh42/agents markdown-table-generatorGenerate a Markdown table from the following data:
Name: Tanaka, Age: 30, Occupation: Engineer
Name: Sato, Age: 25, Occupation: Designer
Name: Suzuki, Age: 28, Occupation: ManagerProduct, Price, Stock
iPhone 15, 128000, 50
MacBook Pro, 298000, 20
AirPods Pro, 39800, 100| Product | Price | Stock |
|--------------|--------|-------|
| iPhone 15 | 128000 | 50 |
| MacBook Pro | 298000 | 20 |
| AirPods Pro | 39800 | 100 || Product | Category | Price |
|:-------------|:--------:|-------:|
| iPhone 15 | Smartphone | 128000 |
| MacBook Pro | PC | 298000 |
| AirPods Pro | Audio | 39800 |:---:---:---:[
{"name": "John", "age": 30, "city": "Tokyo"},
{"name": "Jane", "age": 25, "city": "Osaka"}
]| name | age | city |
|------|-----|-------|
| John | 30 | Tokyo |
| Jane | 25 | Osaka |Name,Email,Role
Alice,alice@example.com,Admin
Bob,bob@example.com,User
Carol,carol@example.com,Editor| Name | Email | Role |
|-------|---------------------|--------|
| Alice | alice@example.com | Admin |
| Bob | bob@example.com | User |
| Carol | carol@example.com | Editor || Metric | Jan | Feb | Mar | Average |
|:-------------------|--------:|--------:|--------:|---------:|
| Page Views | 125,430 | 138,920 | 152,100 | 138,817 |
| Unique Users | 45,230 | 52,100 | 58,920 | 52,083 |
| Conversion Rate | 2.3% | 2.8% | 3.1% | 2.7% |
| Average Stay Time (sec) | 145 | 158 | 172 | 158 || Task | Assignee | Status | Deadline |
|-------------------------|--------|-----------|-----------|
| Design Review | Suzuki | ✅ Completed | 2024-06-15 |
| Implementation | Tanaka | 🔄 In Progress | 2024-06-20 |
| Testing | Yamada | ⏳ Pending | 2024-06-25 |
| Release | Sato | ⏳ Pending | 2024-06-30 || Feature | Free Plan | Pro | Enterprise |
|---------------|:---------:|:--------:|:---------------:|
| Number of Users | Up to 5 | Unlimited | Unlimited |
| Storage | 5GB | 100GB | Unlimited |
| Support | Community | Email | 24/7 Phone Support |
| Monthly Price | ¥0 | ¥1,200 | Contact us ||Name|Age|City|
|-|-|-|
|John Doe|30|Tokyo|
|Jane|25|San Francisco|| Name | Age | City |
|----------|-----|---------------|
| John Doe | 30 | Tokyo |
| Jane | 25 | San Francisco |Sort the following table in descending order of price:
[Table]Extract only products with stock ≥50 from the following table:
[Table]| Name | Age |
|------|-----|
| John | 30 |<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>30</td>
</tr>
</tbody>
</table>Generate a Markdown table from the following data:
Product Name, Price, Stock
iPhone 15, 128000, 50
MacBook Pro, 298000, 20
Requirements:
- Align prices to the right
- Center-align stock
- Sort by price (descending)