Rmarkdown HTML Template produces pandoc error 61

前端 未结 2 1885
野趣味
野趣味 2020-12-03 22:55

Rmarkdown seams not working as usual after installing R3.4.3:

When knitting that HTML-Template:

---
title: \"Untitled\"
output: html_document
---  

         


        
2条回答
  •  春和景丽
    2020-12-03 23:32

    Adding "self_contained: no" should remove the error message.

    ---
    title: "R Notebook"
    output: 
      html_document:
        self_contained: no
    ---
    

    Source: Error when knitting default RMarkdown file in RStudio - @UsamaFoad

提交回复
热议问题