我试图让其中一个针对我的R笔记本应用的针织高亮主题,但我所做的并不起作用(在Notebook Preview和Knitted HTML文件中)。
你能告诉我这样做的正确方法是什么吗?
谢谢!
---
output:
html_notebook:
code_folding: none
df_print: kable
theme: yeti
toc: yes
toc_depth: 4
html_document:
df_print: kable
---
```{r}
library(knitr)
thm = knit_theme$get("molokai") # parse the theme to a list
knit_theme$set(thm)
```