R-markdown self_contained

后端 未结 1 1839
無奈伤痛
無奈伤痛 2021-01-23 09:38

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

相关标签:
1条回答
  • 2021-01-23 10:33

    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.

    0 讨论(0)
提交回复
热议问题