├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── appshot.R ├── image.R ├── pipe.R ├── process.R ├── rmdshot.R ├── utils.R ├── wait.R ├── webshot.R ├── webshot2-package.R └── zzz.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── man-roxygen └── webshot-return.R ├── man ├── appshot.Rd ├── figures │ ├── README-demo-1.png │ ├── README-demo-2.png │ └── README-demo-3.png ├── reexports.Rd ├── resize.Rd ├── rmdshot.Rd ├── shrink.Rd ├── webshot.Rd └── webshot2-package.Rd ├── pkgdown ├── _brand.yml ├── _pkgdown.yml └── extra.scss ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md └── webshot2.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | docs 4 | CRAN-SUBMISSION 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: webshot2 authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/appshot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/appshot.R -------------------------------------------------------------------------------- /R/image.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/image.R -------------------------------------------------------------------------------- /R/pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/pipe.R -------------------------------------------------------------------------------- /R/process.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/process.R -------------------------------------------------------------------------------- /R/rmdshot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/rmdshot.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/wait.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/wait.R -------------------------------------------------------------------------------- /R/webshot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/webshot.R -------------------------------------------------------------------------------- /R/webshot2-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/webshot2-package.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man-roxygen/webshot-return.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man-roxygen/webshot-return.R -------------------------------------------------------------------------------- /man/appshot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/appshot.Rd -------------------------------------------------------------------------------- /man/figures/README-demo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/figures/README-demo-1.png -------------------------------------------------------------------------------- /man/figures/README-demo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/figures/README-demo-2.png -------------------------------------------------------------------------------- /man/figures/README-demo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/figures/README-demo-3.png -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/resize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/resize.Rd -------------------------------------------------------------------------------- /man/rmdshot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/rmdshot.Rd -------------------------------------------------------------------------------- /man/shrink.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/shrink.Rd -------------------------------------------------------------------------------- /man/webshot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/webshot.Rd -------------------------------------------------------------------------------- /man/webshot2-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/man/webshot2-package.Rd -------------------------------------------------------------------------------- /pkgdown/_brand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/pkgdown/_brand.yml -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/pkgdown/extra.scss -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /webshot2.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/webshot2/HEAD/webshot2.Rproj --------------------------------------------------------------------------------