It enables you to copy selected cells in Excel and paste as markdown table in Inkdrop.
ipm install copy-excel-paste-markdown
Select "Plugins" → "Paste Excel as Markdown" from menu to run this plugin's command paste-excel-as-markdown
.
It converts copied cells from Excel into Markdown table and paste it into the editor.
For example,
- You copy below cells:
- Clipboard text will be like this
animal weight color
dog 30lb tan
dog 85lb black
cat 18lb calico
- You call the plugin:
- It will be pasted in Editor as:
| animal | weight | color |
|--------|--------|--------|
| dog | 30lb | tan |
| dog | 85lb | black |
| cat | 18lb | calico |
- It will be viewed in preview mode as:
This plugin was based on jonmagic/copy-excel-paste-markdown and inkdropapp/inkdrop-paste-as-markdown plugin.