Description Usage Arguments Examples
View source: R/gather_data_from_googlesheets.R
Loads all cv data into a single list that is taken by the new_cv_printed function and used to generate your data-driven CV!
1 | gather_data_from_googlesheets(positions_sheet_loc = NULL, public_sheet = FALSE)
|
public_sheet |
Info on if the sheet is public or not. Usually CV's are public so your sheet should be to. Make a sheet public by going to "share" and saying "anyone with link can view".? |
1 2 3 4 5 6 7 8 9 10 | cv_info_loc <- "https://docs.google.com/spreadsheets/d/14MQICF2F8-vf8CKPF1m4lyGKO6_thG-4aSwat1e2TWc"
# Gather data for CV from googlesheets
data <- gather_data_from_googlesheets(cv_info_loc, public_sheet = TRUE)
# Setup CV printer
printer <- new_cv_printer(data, pdf_mode = TRUE)
# Print education section
printer <- printer %>% print_section('education')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.