用knitr/rmarkdown突出显示bash代码 [英] Highlighting bash code with knitr / rmarkdown

查看:71
本文介绍了用knitr/rmarkdown突出显示bash代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用RStudio,R Markdown和knitr生成HTML报告.在报告中,我想显示一些bash代码.我不想运行代码,但希望突出显示它.

I'm trying to generate an HTML report using RStudio, R Markdown and knitr. In the report I would like to display some bash code. I do not want to run the code but I would like it to be highlighted.

另一个问题中已提及该问题,但该建议对我不起作用.到目前为止,这是我尝试过的:

It has been mentioned in another question but the suggestion there doesn't work for me. Here's what I've tried so far:

---
title: "bash highlighting?"
output: html_document
---
```{r, engine = 'bash', eval = FALSE}
for foo in (ls bar)
do
  echo $foo
done
```

```{bash, eval = FALSE}
for foo in (ls bar)
do
  echo $foo
done
```

这些都不使我在HTML文档中突出显示.我知道这是有可能的,因为我记得一周左右前在某处看到过它,但现在找不到了!有人知道我能做到吗?

Neither of these give me highlighting in the HTML document. I know it's possible because I remember seeing it somewhere a week or so ago, but I can't find it anymore! Does anyone know how I can achieve it?

感谢阅读,

汤姆

我刚刚找到此答案,建议在.Rmd中使用以下代码块

I just found this answer, which suggests using the following code block in the .Rmd

<link rel="stylesheet" href="http://yandex.st/highlightjs/7.3/styles/default.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="http://yandex.st/highlightjs/7.3/highlight.min.js"></script>
<script>
$(document).ready(function() {
  $('pre code').each(function(i, e) {hljs.highlightBlock(e)});
});
</script>

这适用于文档中的bash代码,但会杀死R代码的突出显示!

This works for the bash code in the document but kills the highlighting for the R code!

## R version 3.2.0 (2015-04-16)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 14.04.2 LTS
## 
## locale:
##  [1] LC_CTYPE=en_AU.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_AU.UTF-8        LC_COLLATE=en_AU.UTF-8    
##  [5] LC_MONETARY=en_AU.UTF-8    LC_MESSAGES=en_AU.UTF-8   
##  [7] LC_PAPER=en_AU.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_AU.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## loaded via a namespace (and not attached):
## [1] formatR_1.2     tools_3.2.0     htmltools_0.2.6 yaml_2.1.13    
## [5] rmarkdown_0.5.1 knitr_1.10      stringr_0.6.2   digest_0.6.8   
## [9] evaluate_0.7

推荐答案

默认语法突出显示主题不适用于非R代码块,您可以使用其他主题,例如pygments

The default syntax highlighting theme does not work well for non-R code chunks, and you can use other themes, e.g. pygments

---
title: "Bash Highlighting"
output:
  html_document:
    highlight: pygments
---

```{r, engine = 'bash', eval = FALSE}
for foo in (ls bar)
do
  echo $foo
done
```

这篇关于用knitr/rmarkdown突出显示bash代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆