R Markdown Source
Use four backticks and the "markdown" syntax hint to surround the source of R Markdown documents:
Type this:
````markdown
---
title: "It's full of cars!"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents.
```{r cars}
summary(cars)
```
````
See this:
---
title: "It's full of cars!"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents.
```{r cars}
summary(cars)
```