Images and vector artwork are embedded in assets/ and referenced inline via src — no declaration block, no $id indirection.
Assets
conceptimages & vectorsImages and vector artwork are embedded in assets/ and referenced inline via src — no declaration block, no $id indirection.
All raster images are converted to WebP at 0.85 quality by the Figma plugin. External URLs are a fallback only. If a URL reference fails to load, the renderer shows an asset not loaded error state — no silent failure.
| Attr | Type | Description |
|---|---|---|
assets/img.webp | pattern | Embedded raster (default for all exports). |
assets/icon.svg | pattern | Embedded vector artwork. |
https://… | pattern | External URL — fallback only. |
Example
<img src="assets/hero.webp" w="390" h="240" fit="cover" /> <img src="assets/icon-close.svg" w="24" h="24" /> <img src="https://example.com/photo.jpg" w="390" h="240" fit="cover" />