I have a R notebook named "test.Rmd" with the following content:
---
title: "R Notebook"
output: html_notebook
---
```{sh}
faToTwoBit dmel-all-chromosome-r6.04.fasta dmel-all-chromosome-r6.04.2bit
```
Then rstudio will create "test.nb.html" automatically. However, the code chunks are wrongly displayed in the html:
It only displayed bit
, instead of the entire line (faToTwoBit dmel-all-chromosome-r6.04.fasta dmel-all-chromosome-r6.04.2bit
). Is there something wrong with my .Rmd?