https://github.com/bschilder/autocv
Automatically generate and style your CV from tables.
https://github.com/bschilder/autocv
automation cv professional-development r-package
Last synced: over 1 year ago
JSON representation
Automatically generate and style your CV from tables.
- Host: GitHub
- URL: https://github.com/bschilder/autocv
- Owner: bschilder
- Created: 2023-10-06T16:59:15.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-08T07:37:24.000Z (about 2 years ago)
- Last Synced: 2025-02-08T17:20:18.819Z (over 1 year ago)
- Topics: automation, cv, professional-development, r-package
- Language: R
- Homepage: https://bschilder.github.io/autoCV/
- Size: 13.4 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
title: ""
author: "`r rworkflows::use_badges()`"
date: "
README updated: `r format( Sys.Date(), '%b-%d-%Y')`
"
output:
github_document
---
```{r, echo=FALSE, include=FALSE}
pkg <- read.dcf("DESCRIPTION", fields = "Package")[1]
title <- read.dcf("DESCRIPTION", fields = "Title")[1]
description <- read.dcf("DESCRIPTION", fields = "Description")[1]
URL <- read.dcf('DESCRIPTION', fields = 'URL')[1]
owner <- strsplit(URL,"/")[[1]][4]
repo <- strsplit(URL,"/")[[1]][5]
```
## ``r pkg``: `r gsub("\n","",title)`
### `r gsub("\n","",description)`
## Installation
```R
if(!require("remotes")) install.packages("remotes")
remotes::install_github("`r paste(owner,repo,sep='/')`")
library(`r pkg`)
```
## Documentation
### [Website](https://`r owner`.github.io/`r repo`)
### [Getting started](https://`r owner`.github.io/`r repo`/articles/`r pkg`)
## Acknowledgements
``r pkg`` builds on the work of many others,
especially:
- [`pagedown`](https://github.com/rstudio/pagedown)
- [`rmarkdown`](https://github.com/rstudio/rmarkdown)
## Session Info
```{r}
utils::sessionInfo()
```