02:00
RStudio and Quarto
September 22, 2024
setwd
02:00
---
title: "My Documnet"
author: "Your Name"
date: today
date-format: long
format: html
execute:
echo: false
message: false
---
02:00
#
, ##
, ###
, etc.)
#
is the largest heading (level 1)##
is the next largest (level 2)###
is the next largest (level 3)*
)
**
)-
)1.
)[text](url)
)![](file path or url)
)10:00
#|
(hash-pipe) to add optionslabel
is a unique identifier for the chunkecho
controls whether the code is showneval
controls whether the code is runmessage
controls whether messages are shownwarning
controls whether warnings are shown{r, echo = FALSE} ...
02:00