python highlighting in Rmarkdown in RStudio

2019-03-20 11:46发布

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?

2条回答
时光不老,我们不散
2楼-- · 2019-03-20 12:23

The engine option tells knitr which language to use to actually run the code chunk.

What they are referring to in the release notes is syntax highlighting in the source code editor. Open an existing Python source file in the editor and you will see it is correctly highlighted.

Language-dependent syntax highlighting is usually selected based on the underlying language of the file you are editing (often simply based on the filename extension). In your example, you are editing a .RMd file, so the editor uses the syntax rules for r-markdown.

查看更多
该账号已被封号
3楼-- · 2019-03-20 12:29
output: 
  html_document:
    highlight: pygments

in the head did the trick.

查看更多
登录 后发表回答