├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── gist_comment.R ├── gist_to_carbon.R ├── gist_upload.R ├── git_auth.R ├── reexports.R └── reprex_shot.R ├── README.md ├── _build_logo.R ├── _pkgdown.yml ├── data-raw └── carbon_constants.R ├── data ├── carbon_fonts.rda └── carbon_themes.rda ├── gistillery.Rproj ├── man ├── carbon_fonts.Rd ├── carbon_themes.Rd ├── figures │ ├── gistillery-logo.png │ └── logo.png ├── gist_append_img.Rd ├── gist_comment.Rd ├── gist_to_carbon.Rd ├── gist_upload.Rd ├── git_auth.Rd ├── reexports.Rd └── reprex_shot.Rd └── pkgdown └── favicon ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png └── favicon.ico /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: gistillery authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/gist_comment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/R/gist_comment.R -------------------------------------------------------------------------------- /R/gist_to_carbon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/R/gist_to_carbon.R -------------------------------------------------------------------------------- /R/gist_upload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/R/gist_upload.R -------------------------------------------------------------------------------- /R/git_auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/R/git_auth.R -------------------------------------------------------------------------------- /R/reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/R/reexports.R -------------------------------------------------------------------------------- /R/reprex_shot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/R/reprex_shot.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/README.md -------------------------------------------------------------------------------- /_build_logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/_build_logo.R -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /data-raw/carbon_constants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/data-raw/carbon_constants.R -------------------------------------------------------------------------------- /data/carbon_fonts.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/data/carbon_fonts.rda -------------------------------------------------------------------------------- /data/carbon_themes.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/data/carbon_themes.rda -------------------------------------------------------------------------------- /gistillery.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/gistillery.Rproj -------------------------------------------------------------------------------- /man/carbon_fonts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/carbon_fonts.Rd -------------------------------------------------------------------------------- /man/carbon_themes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/carbon_themes.Rd -------------------------------------------------------------------------------- /man/figures/gistillery-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/figures/gistillery-logo.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/gist_append_img.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/gist_append_img.Rd -------------------------------------------------------------------------------- /man/gist_comment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/gist_comment.Rd -------------------------------------------------------------------------------- /man/gist_to_carbon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/gist_to_carbon.Rd -------------------------------------------------------------------------------- /man/gist_upload.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/gist_upload.Rd -------------------------------------------------------------------------------- /man/git_auth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/git_auth.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/reprex_shot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/man/reprex_shot.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthomasmock/gistillery/HEAD/pkgdown/favicon/favicon.ico --------------------------------------------------------------------------------