Knitr produces a nice, syntax highlighted code when using a code chunk as below.
```sql SELECT column FROM table ```
Is it possible to achi
I think you can use an inline R expression to achieve it:
```sql `r xfun::file_string('mycode.sql')` ```