diff --git a/README.md b/README.md index f64e4ea..f952e0f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ ## Obsidian Footnotes Plugin -This plugin for Obsidian gives you a new customizable hotkey that... +This hotkey lets you: -- Inserts a footnote marker (e.g. `[^1]`) with auto-incremented index in your text -- Adds the footnote detail (e.g. `[^1]: `) at the bottom of your text and -- Places your cursor so you can fill in the details quickly -- Allows you to JUMP BACK from the footnote detail (e.g. `[^1]: My details`) to the footnote in your text (e.g. `[^1]`) +- Insert a new footnote marker (e.g. `[^1]`) with auto-incremented index in your text + - Adds the footnote detail (e.g. `[^1]: `) at the bottom of your text + - Places your cursor so you can fill in the details quickly +- Jump from your footnote to the footnote detail +- Jump from your footnote detail to the footnote ![Overview](https://github.com/akaalias/obsidian-footnotes/blob/master/basic.gif?raw=true) diff --git a/main.ts b/main.ts index e85fd82..691f8c1 100644 --- a/main.ts +++ b/main.ts @@ -10,7 +10,7 @@ export default class MyPlugin extends Plugin { async onload() { this.addCommand({ id: 'insert-footnote', - name: 'Insert Footnote', + name: 'Insert and Navigate Footnote', checkCallback: (checking: boolean) => { if (checking) return !!this.app.workspace.getActiveViewOfType(MarkdownView); this.insertFootnote(); diff --git a/manifest.json b/manifest.json index a209cd6..246c0f4 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-footnotes", "name": "Footnote Shortcut", - "version": "0.0.6", + "version": "0.0.7", "minAppVersion": "0.9.12", "description": "Insert and write footnotes faster", "author": "Alexis Rondeau",