This is probably very easy but I can\'t seem to find it in docs. I would like to not embed the generated images in the HTML file itself.
So basically I want knit2htm
You can just add self_contained: no to the output options in the .Rmd header. For example:
self_contained: no
--- title: "Data visualisation with ggplot" output: html_document: self_contained: no toc: yes toc_float: yes ---