├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── Rmd.R └── utils.R ├── README.Rmd ├── README.md ├── man ├── download_rmd.Rd ├── figures │ ├── hex.R │ ├── rmdrive.png │ └── rmdrive_hex.png ├── operator_pipe.Rd ├── render_rmd.Rd ├── update_rmd.Rd └── upload_rmd.Rd └── rmdrive.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/Rmd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/R/Rmd.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/README.md -------------------------------------------------------------------------------- /man/download_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/download_rmd.Rd -------------------------------------------------------------------------------- /man/figures/hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/figures/hex.R -------------------------------------------------------------------------------- /man/figures/rmdrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/figures/rmdrive.png -------------------------------------------------------------------------------- /man/figures/rmdrive_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/figures/rmdrive_hex.png -------------------------------------------------------------------------------- /man/operator_pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/operator_pipe.Rd -------------------------------------------------------------------------------- /man/render_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/render_rmd.Rd -------------------------------------------------------------------------------- /man/update_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/update_rmd.Rd -------------------------------------------------------------------------------- /man/upload_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/man/upload_rmd.Rd -------------------------------------------------------------------------------- /rmdrive.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/januz/rmdrive/HEAD/rmdrive.Rproj --------------------------------------------------------------------------------