Assets & images
Not every link points at another page. plasmoid only rewrites links that target a
.md file; everything else is passed through untouched.
Images and non-markdown links
A relative link to an image or any non-.md asset is left exactly as written:
So ./diagram.png stays ./diagram.png in the output. Place such assets alongside
your Markdown and they resolve relative to the rendered page, or reference a
root-absolute path under your site (for example a file you keep in /assets/).
What gets rewritten vs left alone
| Link | Treatment |
|---|---|
./other-page.md | Rewritten to the clean page URL |
../section/page.md#anchor | Rewritten, anchor preserved |
./image.png, ./file.pdf | Passed through unchanged |
https://…, mailto:…, #anchor | Passed through unchanged |
A note on the build
Because the build is offline and deterministic, plasmoid never fetches a remote asset or rewrites an external URL. What you reference is what ships. Back to Nested sections.