Zolt uses distinct prefixes to identify different types of media, allowing the parser to generate the correct HTML tags automatically.
Images use the ! prefix.
![]()
You can control size, alignment, and more using the {} syntax.

Support for shadows and shorthand dimensions:
Videos use the !! prefix. Zolt automatically detects YouTube/Vimeo URLs and converts them to responsive embeds.
Audio files use the ?? prefix and generate an audio tag.
External content like YouTube, Vimeo, or maps use the @@ prefix.
Files use the && prefix and generate an a tag.
| Attribute | Description | Example |
|---|---|---|
w, width | Width (adds px if unitless) | {w=200} |
h, height | Height (adds px if unitless) | {h=150} |
shadow | Adds a box-shadow (true uses theme variable) | {shadow=true} |
align | Alignment (left, center, right) | {align=center} |
float | CSS float (left, right) | {float=right} |
autoplay | Start playing automatically | {autoplay} |
muted | Mute the audio | {muted} |
loop | Restart when finished | {loop} |