Description Usage Arguments Examples
Prints all the links that were stripped from various text as cv print object was used to a single section with the link footnote identifier next to each link.
1 | print_links(cv)
|
cv |
object of class 'cv_printer' created by |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Function to get sample csvs from package data store.
sample_data <- function(name) system.file(paste0('sample_csvs/', name), package = "cvdown")
# Run function on these sample datasets
data <- gather_data_from_csvs(positions_loc = sample_data('positions.csv'),
skills_loc = sample_data('language_skills.csv'),
text_blocks_loc = sample_data('text_blocks.csv'),
contact_info_loc = sample_data('contact_info.csv'))
# Setup CV printer
printer <- new_cv_printer(data, pdf_mode = TRUE)
# Print intro text block with links in it
printer <- print_text_block(printer, 'intro')
# Print out links that were extracted
print_links(printer)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.