Images & Lightbox
Use standard Markdown syntax. We recommend storing images in your assets/images/ directory.

Image Styling (v0.5.1+)
Add specific classes using the { .class } syntax.
Sizing
{ .size-small }
{ .size-medium }
{ .size-large }
Alignment & Effects
{ .align-center }
{ .align-right .with-shadow .with-border }

Captions & Galleries
Figure Captions
Use standard HTML for precise captioning:
<figure>
<img src="/path/to/image.jpg" alt="Description">
<figcaption>This is the caption</figcaption>
</figure>
Image Galleries
Group multiple images into a responsive grid.
<div class="image-gallery">
<figure>
<img src="/assets/img1.jpg" alt="View 1">
<figcaption>Dashboard</figcaption>
</figure>
<figure>
<img src="/assets/img2.jpg" alt="View 2">
<figcaption>Settings</figcaption>
</figure>
</div>
Lightbox (Zoom)
If mainScripts is enabled (default), any image inside a gallery or any image with the .lightbox class will open a full-screen zoom view on click.
{ .lightbox }
Always provide descriptive Alt-Text. While modern AI agents can “see” images, descriptive text in the markdown source acts as a direct hint for the model’s reasoning engine, especially when images contain complex diagrams or architectural flows.