library(tidyverse)
df <- read_csv("data-raw/data_dictionary.csv")
for (i in 1:nrow(df)){
cat("#' \\item{", df$Variable[i], "}{", df$Description[i], "}", sep = "")
cat("\n")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.