Copy Markdown Table to TSV
A VS Code extension that converts selected Markdown tables to TSV or CSV format and copies them to the clipboard.
Features
- Convert Markdown tables to TSV format
- Convert Markdown tables to CSV format
- Automatically copy the result to clipboard
- Easy access from context menu
Usage
- Open a Markdown file (
.md)
- Select the Markdown table you want to convert
- Right-click and select "Convert Markdown Table to TSV" or "Convert Markdown Table to CSV"
- The converted format will be copied to your clipboard
Example
Markdown Table
| Name | Age | Occupation |
| --- | --- | --- |
| John | 30 | Engineer |
| Jane | 25 | Designer |
Converted (TSV)
Name Age Occupation
John 30 Engineer
Jane 25 Designer
Converted (CSV)
Name,Age,Occupation
John,30,Engineer
Jane,25,Designer
Requirements
- Visual Studio Code 1.60.0 or higher
License
This extension is released under the MIT License.
| |