Skip to content

Commit

Permalink
Updates readme and bumps version
Browse files Browse the repository at this point in the history
  • Loading branch information
akaalias committed Mar 5, 2021
1 parent a49aa06 commit fbc7990
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit fbc7990

Please sign in to comment.