Setting up a Quarto website
Let’s give this a short
This is a test
Go Padres
Let’s give this a short
Rick Morgan
August 11, 2025
This is a test
Go Padres
---
title: "Setting up a Quarto website"
subtitle: "Let's give this a short"
author: "Rick Morgan"
date: today
format:
html:
toc: true
toc-depth: 3
code-fold: show
code-tools: true
theme: cosmo
self-contained: true
number-sections: true
fig-cap-location: bottom
embed-resources: true
output:
bookdown::pdf_document2:
toc: true
toc_depth: 3
geometry: margin=1in
fontsize: 11pt
number_sections: true
fig_caption: true
keep_tex: false
execute:
warning: false
message: false
cache: false
jupyter: python3
engine: knitr
---
```{r setup-r, include=FALSE, echo=FALSE}
temp_directory <- tempdir()
source("../R/load_packages_with_pak.r")
source("../R/gadm_maps_fun.r")
libs_to_load <- c("tidyverse", "reticulate", "sf", "httr",
"leaflet", "rnaturalearth", "sfheaders")
load_with_pak_fun(load_libs = libs_to_load, auto_install_pak = TRUE)
```
This is a test
Go Padres
```{r test2, echo=FALSE, include=TRUE, eval=TRUE}
get_all_admin_boundaries_fun(focus_country = "Burkina Faso", temp_directory, visualize = TRUE, in_quarto = TRUE)
```