pandoc document conversion failed with error 67

后端 未结 3 1829
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-27 05:37

I\'m using R 3.3.2 and Rstudio Version 1.0.44, here\'s the format of my RMarkdown file

---
title: \"Sentiment Analysis\"
output: 
   rmdformats::material:
    hi         


        
3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-27 05:56

    I had the same problem but this solution below worked for me. Just change your markdown top to below and it should work:

    ---
    title: "Test Document"
    output: 
      html_document:
        self_contained: no
    ---
    

    This is a temporary fix, which had been discussed here and given by one of the RStudio guys himself. [Here] (https://github.com/rstudio/rmarkdown/issues/228)

提交回复
热议问题