I'm using Docusaurus to make documentation.
I want to add an image to a markdown file, and also resize it to prevent it to be larger than needed.
Checking This answer, I realized this is possible using static html content in the md file, but since the image is statically in docs/assets
, <img>
tag can't find it.

which can not be resized, and
<img src="assets/github_logo.jpg" width="200" />
which can't find the asset.
I will be happy to get any solutions.