I'm having trouble permanently embedding images in my RStudio ioslides presentation.
Specifically, the problem occurs when I try to include local images via:

The images will appear successfully when I knit the document and open it directly from its folder on my computer. But if I share the html file with anyone else or copy and paste to another directory on my computer, all images embedded via 
disappear.
My YAML header looks like this:
---
title: 'Title'
subtitle: 'Subtitle'
author: "Harrison"
date: '`r format(Sys.time(), "%d %B, %Y")`'
output:
ioslides_presentation:
self_contained: true
widescreen: true
smaller: true
css: custom.css
incremental: false
---
I thought that "self-contained" is supposed to accomplish what I want, that is, to create a fully self-contained html document.
Note: My images are successfully permanently embedded when I use the include_graphics()
function from knitr to add a jpeg or png file.
Any idea what is going on?