# Inline images (Markdown & HTML)
konoma renders block-level images inline, in the flow of the document (kitty
graphics). Local images and remote (`http(s)://`) images both work — remote
ones download off-thread and show a "loading" line until they arrive. Images
scroll with the text.
## Markdown ``

Text between the two images, so you can see the spacing and scrolling behavior.

## HTML `<img>` (the same form the README uses)
<p align="center"><img src="sample.png" width="480" alt="html image form"></p>
## Remote images (fetched with the system `curl`, cached on disk)
A remote raster screenshot and an SVG badge — the kind READMEs show on GitHub.
Both are downloaded in the background and rendered inline (SVG is rasterized):


## Safe fallbacks (design principle #3)
An unreachable remote URL and a missing local file degrade to a text
placeholder instead of breaking the preview:


End of demo.