Writing content
Images
Add images from the public folder with Markdown or HTML.
Put image assets under public/ and reference them with absolute site paths.
Markdown syntax#

Always include meaningful alt text.
HTML syntax#
Use an <img> tag when you need explicit dimensions or other attributes:
Where assets live#
| File on disk | URL in content |
|---|---|
public/images/sample.jpg | /images/sample.jpg |
public/logo.svg | /logo.svg |
Paths are served as-is from the static build output — no image pipeline or optimization step runs at build time.
Framed screenshots#
Wrap media in Frame when you want a border and caption:
Tips#
- keep screenshots reasonably sized for docs readability
- prefer SVG for logos and simple diagrams
- set width/height on large images when layout shift matters
Last updated on