basyura / inkdrop-copy-excel-paste-markdown

Inkdrop Copy Excel Paste Markdown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

copy-excel-paste-markdown plugin for Inkdrop

It enables you to copy selected cells in Excel and paste as markdown table in Inkdrop.

Install

ipm install copy-excel-paste-markdown

Usage

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:

image

  • Clipboard text will be like this
animal	weight	color
dog	30lb	tan
dog	85lb	black
cat	18lb	calico
  • You call the plugin:

plugins_paste_excel

  • 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:

image

Fork of copy-excel-paste-markdown and inkdrop-paste-as-markdown

This plugin was based on jonmagic/copy-excel-paste-markdown and inkdropapp/inkdrop-paste-as-markdown plugin.

About

Inkdrop Copy Excel Paste Markdown

License:MIT License


Languages

Language:JavaScript 100.0%