Images
Images load from paths relative to the Markdown file or from http(s) URLs. The manual bundles no demo images; the examples therefore show the syntax as code blocks with the result described — in your own files they render directly.
Image syntax
The alt text in the square brackets describes the image (important for accessibility; a missing alt text is flagged by the Markdown linter).

Relative paths resolve against the folder of the Markdown file. For security, only images within a fixed boundary resolve: the root of the area while one is open, otherwise the folder of the Markdown file. No ../ leads beyond it. Supported formats: PNG, JPG/JPEG, GIF, WebP, SVG, BMP.
Image sizes
A size suffix after the URL sets width and/or height in pixels:
 width 300, height 200
 width only, height proportional
 height only, width proportional
Invalid suffixes stay raw text and are not interpreted.
Implicit figures
An image standing alone in a paragraph becomes a figure with the alt text as a centred caption. Images in running text stay unchanged.
Paragraph before.

Paragraph after.
Result: the image appears with the caption “Quarterly figures compared” centred below it.
Embedding images via wiki embed
Alternatively ![[image.png]] embeds an image through the wiki syntax, including the size modifier ![[image.png|300]] — details on the Linking page.