Image-Link
feature - image-link
Convert obsidian wikilink for images to mkdocs-material md-link for images
obsidian support wikilink
with embbe an image in a note
which is also known as internal link. However markdown and mkdocs-material does not support wikilink. It uses
traditional markdown links.
wikilink : ![[images/hello.png]]
mdlink : [images/hello.png](images/hello.png)
Features¶
Internal Links
| type | wikilink | converted link | ||
|---|---|---|---|---|
| basic | ![[hello.png]] |
 |
||
| path | ![[image/hello.png]] |
 |
||
| size | ![[hello.png | 200x300]] |
see below content tab | ||
| caption | ![[hello.png | caption]] |
see below content tab | ||
| size & caption | ![[im/hello.png | my-caption | 200]] |
see below content tab |
Web Links
| type | wikilink | converted link |
|---|---|---|
| basic |  |
see below demo |
| size |  |
see below demo |
| caption |  |
see below demo |
| size & caption |  |
see below demo |
Converted links in md_in_html form
<figure markdown>
{ width="200" height="300" }
</figure markdown>
<figure markdown>

<figcaption>my-caption</figcaption>
</figure markdown>
<figure markdown>
{ width="200" height="300" }
<figcaption>caption</figcaption>
</figure markdown>
Demo¶
Internal Links
Tip
Compare this page with it's original markdown. See the top right link
![[hello.png]]
![[hello.png|200x200]]
![[hello.png|hello-caption|200x200]]
Web Links




[](https://pypi.org/project/mkdocs-obsidian-support-plugin/)
result (web link image with hyperlink) :
You can escape web link conversion by adding backslash - \ on prior to tag(replacement part)