Pandoc is trying to load a googleVis diagram so that it can embed a static / offline copy in your document. You can work around the problem by telling Pandoc not to create a separate document (i.e. do not add resources to it, which causes the problem) - add this to the beginning of the document or just the text between ---
if you already have a YAML header:
--- output: html_document: self_contained: no ---
Pandoc should not have problems retrieving resources over https. If you have time to reproduce the problem outside the rmarkdown workflow (i.e. On Vanilla Markdown โ HTML conversion) and find that it is still a problem, please report the problem to Pandoc: https://github.com / jgm / pandoc / issues .
source share