image.nvim icon indicating copy to clipboard operation
image.nvim copied to clipboard

Support rendering images in Markdown footnotes

Open cvincent opened this issue 1 month ago • 1 comments

Example:

- My list
- Of things[^1]
- Etc

[^1]: ![image](path/to/image.png)

cvincent avatar Oct 17 '25 19:10 cvincent

The above example actually works, I had just perhaps misformatted my footnotes. The problem occurs when footnotes are separated by a newline:

[^1]: Some footnote

[^2]: ![image](path/to/image.png)

The above does not work, but it could actually be an issue with render-markdown.nvim, as it also does not render the footnote number in superscript (only when the footnote is an image; it renders superscript with newlines just fine otherwise).

cvincent avatar Oct 17 '25 19:10 cvincent