I'm using external images in an Rmarkdown document that is meant to be rendered as ioslides and I need to easily resize them.
Doing it the html way works both when I knit
to ioslides and to html_document.
<img src="image.png" style="height: 200px"/>
Doing it the markdown way like below works when I knit
to html_document but NOT when I knit
to ioslides (i.e., the image isn't resized).
{width=200px}
My question is: how can I make the markdown resizing approach work when the output is ioslides?