Skip to content
Jose M Vidal edited this page Mar 31, 2017 · 5 revisions

To embed an image you need a URL to it. If you git-clone your wiki locally you can then just add the image to the wiki directory and then link to it using a relative link. As shown below, using standard markdown.

![bros](img/bros.jpg)

bros

But, if you want to change the width or height of the image you have to use HTML, with the width and height attributes, as such:

<img src="img/bros.jpg" alt="Beagle Bros" width="100"/>
Beagle Bros
Clone this wiki locally