Skip to content

Adding images to .md files

If you need to add images to your .md file, do it as follows:

  1. Open the content folder.

  2. Create a new folder for images named, for example, img.

  3. Place the image you need in this folder. You can use drag-and-drop.

  4. Open the .md file where you need to add the image.

  5. In the required place in the text, specify the relative path to the image in the Markdown format:

    ![Alt text](/path/to/image.png)

If the .md and image files are in the same folder, specify in the link only the file name (without a path).

An example of a reference to an image: ![](img/diagram.svg)