是否可以选择压缩Rstudio .rmd文档的html输出头部中的大标记?

答案 0 :(得分:1)
您可以使用standalone: no
选项;这意味着您的文档无法脱机阅读。
---
output:
html_document:
self_contained: no
---
但是,这将输出一个3.8MB的目录,因为基本的rmarkdown模板包括bootstrap.js;可以使用备用模板来缩小其大小,例如hrbmstr's markdowntemplates之一:
devtools::install_github("hrbrmstr/markdowntemplates")
在Rmd文件中:
---
output: markdowntemplates::bulma
---