Skip to content

Commit 84a1ad6

Browse files
author
Ganessh Kumar R P
committed
updating hotkeys and updating to v0.1.1
1 parent 3fae846 commit 84a1ad6

File tree

5 files changed

+26
-18
lines changed

5 files changed

+26
-18
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ An Obsidian plugin to paste Excel tables as Markdown tables in Obsidian editor.
88

99
You can paste the copied Excel date from the clipboard by using either
1010

11-
1. Hotkey - `Crtl/Cmd + Shift + V` or
11+
1. Hotkey - `Crtl/Cmd + Alt + V` (reassign it from settings if needed) or
1212
2. Command Palette: `Ctrl/Cmd + P` > `Excel to Markdown` command
1313

1414
![Obsidian Excel to Markdown Table](https://user-images.githubusercontent.com/2135089/151919147-8315155a-0972-4152-a8cc-70f835b6dece.gif)
15+
**Note**: The hotkeys are `Ctrl/Cmd + Alt + V`
16+
1517

1618
## Installation
1719

18-
### From Obsidian
20+
### From Obsidian (Yet to be approved to be available in the community plugins)
1921

2022
1. Open `Settings` > `Third-party plugin`
2123
2. Make sure Safe mode is **off**

manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
{
2-
"id": "obsidian-excel-to-markdown-table",
3-
"name": "Excel to Markdown Table",
4-
"version": "0.1.0",
5-
"minAppVersion": "0.12.0",
6-
"description": "An Obsidian plugin to paste Excel tables as Markdown tables in Obsidian editor.",
7-
"author": "Ganessh Kumar R P <rpganesshkumar@gmail.com>",
8-
"authorUrl": "https://ganesshkumar.com",
9-
"isDesktopOnly": false
10-
}
1+
{
2+
"id": "obsidian-excel-to-markdown-table",
3+
"name": "Excel to Markdown Table",
4+
"version": "0.1.1",
5+
"minAppVersion": "0.12.0",
6+
"description": "An Obsidian plugin to paste Excel tables as Markdown tables in Obsidian editor.",
7+
"author": "Ganessh Kumar R P <rpganesshkumar@gmail.com>",
8+
"authorUrl": "https://ganesshkumar.com",
9+
"isDesktopOnly": false
10+
}

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
{
22
"name": "obsidian-excel-to-markdown-table",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "An Obsidian plugin to paste Excel tables as Markdown tables in Obsidian editor.",
55
"main": "main.js",
66
"scripts": {
77
"dev": "node esbuild.config.mjs",
88
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
99
"version": "node version-bump.mjs && git add manifest.json versions.json"
1010
},
11-
"keywords": ["obsidian", "excel", "markdown", "table"],
11+
"keywords": [
12+
"obsidian",
13+
"excel",
14+
"markdown",
15+
"table"
16+
],
1217
"author": "Ganessh Kumar R P",
1318
"license": "MIT",
1419
"devDependencies": {

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default class ExcelToMarkdownTablePlugin extends Plugin {
88
name: 'Excel to Markdown',
99
hotkeys: [
1010
{
11-
modifiers: ["Ctrl", "Shift"],
11+
modifiers: ["Mod", "Alt"],
1212
key: "v"
1313
}
1414
],

versions.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
{
2-
"0.1.0": "0.12.0"
3-
}
1+
{
2+
"0.1.0": "0.12.0",
3+
"0.1.1": "0.12.0"
4+
}

0 commit comments

Comments
 (0)