how to hyperlink an image in R Markdown
The following worked for me knitted to HTML. The code references an image from a local data store "./data/appStore.png" The image links to the app store url "https://itunes.apple.com/us/app/my-toy-box/id1217665205?mt=8". When hovering over the image the user sees, "My Toy Box on App Store". The alt text "MyToyBox" doesn't appear.
[](https://itunes.apple.com/us/app/my-toy-box/id1217665205?mt=8)
Use this way: 
Examples: 
or
Combining with the normal syntax for a hyperlink [text](URL)
, we have:
[](web link to website)
Example:
[](http://www.host.com/link.html)