forked from nstrayer/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
render_cv.R
35 lines (28 loc) · 1.34 KB
/
render_cv.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This script builds both the HTML and PDF versions of your CV
# If you want to speed up rendering for googlesheets driven CVs you can cache a
# version of your data This avoids having to fetch from google sheets twice and
# will speed up rendering. It will also make things nicer if you have a
# non-public sheet and want to take care of the authentication in an interactive
# mode.
# To use, simply uncomment the following lines and run them once.
# If you need to update your data delete the "ddcv_cache.rds" file and re-run
library(tidyverse)
source("CV_printing_functions.R")
cv_data <- create_CV_object(
data_location = "https://docs.google.com/spreadsheets/d/14MQICF2F8-vf8CKPF1m4lyGKO6_thG-4aSwat1e2TWc",
cache_data = FALSE
)
readr::write_rds(cv_data, 'cached_positions.rds')
cache_data <- TRUE
# Knit the HTML version
rmarkdown::render("cv.rmd",
params = list(pdf_mode = FALSE, cache_data = cache_data),
output_file = "index.html")
# Knit the PDF version to temporary html location
tmp_html_cv_loc <- fs::file_temp(ext = ".html")
rmarkdown::render("cv.rmd",
params = list(pdf_mode = TRUE, cache_data = cache_data),
output_file = tmp_html_cv_loc)
# Convert to PDF using Pagedown
pagedown::chrome_print(input = tmp_html_cv_loc,
output = "strayer_cv.pdf")