I\'m using R-markdown for a couple of reports. I do it with self contained graphics because I send it via email.
This worked till recently. But now the images are not sh
I just had same problem. In RStudio i had previously:
output:
html_document:
self_contained: yes
and it always worked properly producing self-contained HTML. TODAY it stopped working properly. I did update Rstudio a few weeks ago and might not have noticed problem, not sure. SO now i changed to:
output:
html_document:
self_contained: yes
mode: selfcontained
Which seems strange and redundant with two separate lines trying to make things self-contained BUT it worked.