1# if your image is like this ↓
2<img src="drawing.jpg" alt="drawing"/>
3# then use this ↓ (Add width or style attribute)
4<img src="drawing.jpg" alt="drawing" style="width:200px;"/>
5
6------------------------OR-----------------------------
7# if your image is like this ↓
8![anything.png](attachment:f1c377ae-7b23-464c-a3d0-fa0a98ff9aa3.png)
9# then use this ↓
10<img src="attachment:f1c377ae-7b23-464c-a3d0-fa0a98ff9aa3.png" width="200" height="200">
11
12--------------------Explanation-------------------------
13Replace this format -> ![title](image-url.type)
14with this -> <img src="image-url.type" width="200" height="200">