Use highlight: textmate
in the YAML header.
For instance,
---
title: "Test"
output:
html_document:
highlight: textmate
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## Test
```{r}
library("tidyverse")
```
knits to
Further reading
CLICK HERE to find out more related problems solutions.