Image

A component used to display images in Markdown.

In DocuBook, all images written in Markdown are automatically converted to their respective components. This allows for better optimization and performance in your application.

Images

Similarly, images in Markdown are transformed into the Tag Image GFM (common markdown) component. This allows for automatic image optimization, such as lazy loading and resizing, which enhances performance and user experience. Here’s an example:

Markdown

md
![Alt text for the image](https://via.placeholder.com/150)

Rendered Output

The above Markdown is converted to:

md
![Alt text for the image](https://via.placeholder.com/150)

Benefits

  • Performance Optimization: Automatic conversion to GFM (common markdown) components ensures optimized loading of images.
  • Responsive Images: Image component handles responsive images, providing the best quality for various device sizes.

By utilizing these features, you can ensure that your documentation is not only visually appealing but also performs efficiently.

Last updated Aug 13, 2026