MDA Team 2023-10-19
Before you render this file with quarto, you will need to make sure
that the quarto cli and the
following R packages are available in your local environment
(shell/terminal)…
required_packages <- c(
"markdown",
"tidyverse",
"palmerpenguins"
)## Initial setup ----
#| echo: false
#| output: false
#| warning: false
suppressMessages({
if (!require("tidyverse") || !require("palmerpenguins")) {
options(
repos = c(CRAN = "https://cran.rstudio.com")
)
install.packages(required_packages)
}
})Once this dependency is satisfied, render this README (as markdown) with this command:
quarto render README.qmd --cache-refresh --output README.md --to gfm --verbose
Render the entire project with this npm command:
npm run build:all
Render the entire project as markdown with this npm command:
npm run build:markdown