Created
September 19, 2014 04:49
-
-
Save kbroman/ca560b967b0b7a08a3b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A regular code chunk: | |
```{r regular} | |
data(cars) | |
summary(cars) | |
``` | |
A verbatim code chunk: | |
<pre><code>```{r verbatim} | |
data(cars) | |
summary(cars) | |
```</code></pre> | |
Seems like you need to have the `<code>` and the 3 initial backticks on the same | |
line, and similarly for the ending 3 backticks and `</code>`. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment