Images
If you need to insert an image to text, you need to:
Add image to /static/assets catalog
There is some restrictions:
- Docusaurus is case sensitive, keep correct naming including extensions.
image1.png is not the same as image1.PNG - Do not use spaces in file names
Add it to your page
There are several ways to insert image.
- Simple. No alligning, no caption
- Centered If we need to insert image as a separate object and center it, we can put this into tag called figure. Example:
- Centered with caption If we need to add caption to centered image, we can add tag figcaption. Example:

This will look like:
<figure>

</figure>
This will look like:
<figure>

<figcaption>
<p>This is a caption for image</p>
</figcaption>
</figure>
This will look like:
This is a caption for image