Skip to contents

Read user-defined metadata for the present job.

Usage

load_job_info(
  field = "all",
  filename = "job_metadata.yml",
  dir = "input",
  open = FALSE
)

Value

A nested named list of strings with user-specified job details.

See also

Examples

load_job_info(filename = "template_job_metadata.yml", dir = "templates")
#> $name
#> [1] "Your Name"
#> 
#> $period
#> [1] "2024-07-data-science"
#> 
#> $id
#> [1] "AB"
#> 
#> $base_id
#> [1] "/"
#> 
#> $company
#> [1] "Company Name"
#> 
#> $position
#> [1] "Data Scientist"
#> 
#> $portal_url
#> [1] "/"
#> 
#> $posting_url
#> [1] "https://en.wikipedia.org/wiki/Data_science"
#> 
#> $linkedin_url
#> [1] "/"
#> 
#> $recruiter_email
#> [1] "/"
#> 
#> $notes
#> [1] "/"
#>