| Title: | Download R Cheat Sheets Locally | 
| Version: | 0.1.2 | 
| Description: | A simple package to grab cheat sheets and save them to your local computer. | 
| License: | MIT + file LICENSE | 
| Suggests: | testthat, covr | 
| Encoding: | UTF-8 | 
| RoxygenNote: | 7.1.1 | 
| URL: | https://bradlindblad.github.io/cheatsheet/ | 
| BugReports: | https://github.com/bradlindblad/cheatsheet/issues | 
| Imports: | magrittr, git2r, fs, crayon, cli, purrr, rstudioapi | 
| NeedsCompilation: | no | 
| Packaged: | 2023-05-01 02:10:43 UTC; brad | 
| Author: | Brad Lindblad [aut, cre], Posit [cph] | 
| Maintainer: | Brad Lindblad <me@bradlindblad.com> | 
| Repository: | CRAN | 
| Date/Publication: | 2023-05-01 14:40:05 UTC | 
cheatsheet: Download R Cheatsheets Locally.
Description
A simple package to grab cheatsheets and save them to your local computer.
Author(s)
Maintainer: Brad Lindblad me@bradlindblad.com
Other contributors:
- RStudio [copyright holder] 
See Also
Useful links:
- Report bugs at https://github.com/bradlindblad/cheatsheet/issues 
Pipe operator
Description
See magrittr::%>% for details.
Usage
lhs %>% rhs
get_all_cheatsheets
Description
Download all current cheat sheets as pdf files into your chosen directory
Usage
get_all_cheatsheets(local_path = ".", tidyverse_only = FALSE)
Arguments
| local_path | local file path to save the cheatsheets to - string | 
| tidyverse_only | only download tidyverse cheatsheets? - logical | 
Value
No return value; called for side effects.
Note
Downloads all pdf cheatsheets currently available as pdf from https://rstudio.com/resources/cheatsheets/
Examples
## Not run: 
get_all_cheatsheets("~/user/Cheatsheets", tidyverse_only = FALSE)
## End(Not run)
get_translation
Description
Download all current cheat sheets as pdf files into your chosen directory
Usage
get_translation(local_path = ".", language = NA)
Arguments
| local_path | local file path to save the cheatsheets to - string | 
| language | pick a language from the list obtained by running  | 
Value
No return value; called for side effects.
Examples
## Not run: 
get_translation("~/user/Cheatsheets", language = "german")
## End(Not run)
list_languages
Description
View all the languages that can be pulled using cheatsheet::get_translation()
Usage
list_languages()
Value
No return value; called for side effects.
Examples
## Not run: 
list_languages()
## End(Not run)