Images
note
Writerside supports images in PNG, JPG, GIF, and SVG formats.
<img src="image.png" alt="Alt text" width="450"/>
tip
You can also paste an image from the clipboard directly into the editor. Writerside will suggest saving the image to the images directory and add the necessary markup for it at the location of the caret.
If the image and topic file are in the same directory:
<img src="./image.png" alt="Alt text" width="450"/>
If the image is in some other location:
<img src="../myMediaDir/image.png" alt="Alt text" width="450"/>
Or relative to the project root:
<img src="$PROJECT_DIR$/allImages/image.png" alt="Alt text" width="450"/>
<img src="https://www.jetbrains.com/company/brand/img/jetbrains_logo.png" alt="Alt text"/>
note
There is currently a known issue that you cannot set the size of an externally hosted image. It will be fixed in the future.
Thanks for your feedback!
Was this page helpful?