https://github.com/inkdropapp/inkdrop-footnotes
Enables reference footnotes and inline footnotes
https://github.com/inkdropapp/inkdrop-footnotes
Last synced: about 1 year ago
JSON representation
Enables reference footnotes and inline footnotes
- Host: GitHub
- URL: https://github.com/inkdropapp/inkdrop-footnotes
- Owner: inkdropapp
- License: mit
- Created: 2020-03-08T04:02:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-31T02:04:58.000Z (almost 3 years ago)
- Last Synced: 2025-02-02T11:29:26.523Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://www.inkdrop.app/
- Size: 267 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Footnotes plugin for Inkdrop
Enables reference footnotes and inline footnotes.
Both are wrapped in square brackets and preceded by a caret (`^`), and can be referenced from inside other footnotes.
## Install
```sh
ipm install footnotes
```
## How to use
```markdown
Here is a footnote reference,[^1]
another,[^longnote],
and optionally there are inline
notes.^[you can type them inline, which may be easier, since you don’t
have to pick an identifier and move down to type the note.]
[^1]: Here is the footnote.
[^longnote]: Here’s one with multiple blocks.
Subsequent paragraphs are indented to show that they
belong to the previous footnote.
{ some.code }
The whole paragraph can be indented, or just the first
line. In this way, multi-paragraph footnotes work like
multi-paragraph list items.
This paragraph won’t be part of the note, because it
isn’t indented.
```
It produces:

Learn more about [the footnotes syntax](https://github.com/remarkjs/remark-footnotes#use).