Adding space between text and image in Markdown
Markdown is not capable of designing layouts like this. You can use multiple non-breaking spaces (
) to adjust the spacing between an image and text.
Example:
![image](link) text
Result:
text
For this to work for me for the paragraph of text next to the image, I used this:
![myimg](link){: height="75px" width="300px" style="float:left; padding-right:10px" }