how to resize image in markdown
# if your image is like this ↓
<img src="drawing.jpg" alt="drawing"/>
# then use this ↓ (Add width or style attribute)
<img src="drawing.jpg" alt="drawing" style="width:200px;"/>
------------------------OR-----------------------------
# if your image is like this ↓
![anything.png](attachment:f1c377ae-7b23-464c-a3d0-fa0a98ff9aa3.png)
# then use this ↓
<img src="attachment:f1c377ae-7b23-464c-a3d0-fa0a98ff9aa3.png" width="200" height="200">
--------------------Explanation-------------------------
Replace this format -> ![title](image-url.type)
with this -> <img src="image-url.type" width="200" height="200">