在 rmarkdown::html_document() .Rmd 中使用 highlight.js 主题

5

当使用html_document时,我能否在RMarkdown的前置元素中指定highlight.js的样式?

示例:

与其使用pandocespresso高亮显示,我想使用highlight.jstommorrow高亮显示,它位于这里

---
title: "Untitled"
output: 
  html_document:
    highlight: espresso
---

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

```{r}
summary(cars)
```

etc...

我该如何做到这一点?
1个回答

1
据我所知,目前没有内置的方法来实现此功能,但您可以在 Rmd 文档开头添加以下行以获得所需效果:
<style type="text/css">
@import "https://highlightjs.org/static/demo/styles/tomorrow.css";
</style>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接