- A "plaintext formatting syntax"
- Type in plain text, render to more complex formats
- One step beyond writing a
txtfile - Render to HTML, PDF, etc.
useR! 2014
txt file# Header 1 ## Header 2 Normal paragraphs of text go here. **I'm bold** [links!](http://rstudio.com) * Unordered * Lists And Tables ---- ------- Like This
Normal paragraphs of text go here.
I'm bold
| And | Tables |
|---|---|
| Like | This |
```{r}
x <- rnorm(100)
length(x)
hist(x)
```
x <- rnorm(100) length(x)
## [1] 100
hist(x)