Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python highlighting in Rmarkdown in RStudio

I'm using RStudio 0.98.1103. It is said in release notes that they've added "Syntax highlighting modes for XML, YAML, SQL, Python, and shell scripts." But when I write something like this:

```{r engine='python', highlight=TRUE}
print("Hello World")
```

- I don't get proper highlighting (like I have here). I've seen this question: Syntax highlighting for Python chunks does not work - but I guess it was asked before the release of 0.98.1103 and things could've change, I'm just doing something wrong.

Could anyone help me out?

like image 234
Egor Ignatenkov Avatar asked Apr 08 '15 16:04

Egor Ignatenkov


1 Answers

output: 
  html_document:
    highlight: pygments

in the head did the trick.

like image 56
Egor Ignatenkov Avatar answered Oct 16 '22 18:10

Egor Ignatenkov