# Heading - level 1
## Heading - level 2R course
Daniel Vaulot
2023-06-21




Markdown and Quarto


Created in 2004 by John Gruber and Aaron Swartz
Goal : “to write using an easy-to-read and easy-to-write plain text format, optionally convert it to structurally valid HTML”.
MultiMarkdown
GitHub Flavored Markdown (GFM)
Pandoc
CommonMark

Markdown
R code (“chunks”)
Output of R code





italic, italic, bold, monospace.
| ID | First | Last |
|---|---|---|
| 1 | Joe | Biden |



| Options | Default value | Aim |
|---|---|---|
| echo | TRUE | Print code (= FALSE in a report for example) |
| eval | TRUE | Evaluate code (= FALSE if want to show code only) |
| warning | TRUE | Warning message (= FALSE to remove long warnings) |
| message | TRUE | Messages (= FALSE to remove long messages) |
| cache | FALSE | If TRUE only modified chunks will be evaluated |
| very useful for computing heavy codes | ||
| fig.height | inches | |
| fig.width | inches |



https://github.com/yihui/xaringan


https://github.com/brentthorne/posterdown


https://cloud.r-project.org/web/packages/vitae/index.html


https://bookdown.org/yihui/blogdown/


R - markdown and Quarto