Replies: 2 comments 3 replies
-
Hey @Demianeen this is not on our roadmap, but if someone can find a clean way to integration it then I'd be happy to accept a PR! |
Beta Was this translation helpful? Give feedback.
0 replies
-
The solution I have for this is to have all of my images in an assets/images folder which is defined both in Obsidian and obsidian.nvim and then in the image.nvim setup have something like this markdown = {
enabled = true,
filetypes = { "markdown" },
resolve_image_path = function(document_path, image_path, fallback)
image_path = "Path/to/vault" .. image_path
return fallback(document_path, image_path)
end,
}, |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I recently found this awesome plugin! But I found myself unable to view the images in it. The solution that I found was a image.nvim plugin, but from what I see obsidian ignores all path to the image and just uses image name. Is it possible to somehow integrate them?(or any other plugin with such functionality)
Beta Was this translation helpful? Give feedback.
All reactions