LAVA meeting Nov 29, 2022
Source
Output
Markup is specifically used to label parts of the document for what they are, rather than how they should be processed.
— Wikipedia
Markup language. (2022, November 16). In Wikipedia. https://en.wikipedia.org/wiki/Markup_language
The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. […] To this end, Markdown’s syntax is comprised entirely of punctuation characters, which punctuation characters have been carefully chosen so as to look like what they mean. E.g., asterisks around a word actually look like *emphasis*.
— John Gruber
.qmd
, .rmd
, .md
) or mixed formats (.ipynb
/Jupyter notebook)“Artwork from”Hello, Quarto” keynote by Julia Lowndes and Mine Çetinkaya-Rundel, presented at RStudio Conference 2022. Illustrated by Allison Horst.”
Public domain via Wikimedia Commons
---
title: "Untitled"
format: html
---
## Quarto
Quarto enables you to weave together content and executable code into
a finished document. To learn more about Quarto see <https://quarto.org>.
```{r}
1 + 1
```
sketchy