Changing Image Size In Markdown
Answer :
You could just use some HTML in your Markdown:
<img src="drawing.jpg" alt="drawing" width="200"/> Or via style attribute (not supported by GitHub)
<img src="drawing.jpg" alt="drawing" style="width:200px;"/> Or you could use a custom CSS file as described in this answer on Markdown and image alignment
 CSS in another file:
img[alt=drawing] { width: 200px; } With certain Markdown implementations (including Mou and Marked 2 (only macOS)) you can append =WIDTHxHEIGHT after the URL of the graphic file to resize the image. Do not forget the space before the =.
 You can skip the HEIGHT
 The accepted answer here isn't working with any Markdown editor available in the apps I have used till date like Ghost, Stackedit.io or even in the StackOverflow editor. I found a workaround here in the StackEdit.io issue tracker.
The solution is to directly use HTML syntax, and it works perfectly:
<img src="http://....jpg" width="200" height="200" />
Comments
Post a Comment