如何在R笔记本中设置knitr语法高亮主题?

时间:2018-04-23 06:25:17

标签: r rstudio knitr rnotebook knitrbootstrap

我试图让其中一个针对我的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)
        ```

在R Notebook中运行命令时的消息。 Message when running command in R Notebook.

针织html喜欢什么。 enter image description here

0 个答案:

没有答案