#obsidian
how to make image as an internal link in obsidian?
I read this post: [(3) Is there a way to make images be image links (i.e. you click on an image, and it takes you to a note/page)? : ObsidianMD (reddit.com)](https://www.reddit.com/r/ObsidianMD/comments/w6mici/is_there_a_way_to_make_images_be_image_links_ie/)
Obsidian supports the following link formats:
- Wikilink: `[[Three laws of motion]]`
- Markdown: `[Three laws of motion](Three%20laws%20of%20motion.md)`
see more: [Internal links - Obsidian Help](https://help.obsidian.md/Linking+notes+and+files/Internal+links#Supported+formats+for+internal+links)
right click the note -> `Copy obsidian url` -> then you will have the encoded url to the markdown file -> open the dev tools -> replace `%2F` with `/`
```js
// deno
"the link".replaceAll("%2F", "/")
```