├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── workflows │ ├── R-CMD-check-dev.yaml │ ├── R-CMD-check.yaml │ ├── cancel.yaml │ ├── lock.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ ├── revdep.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── inline_plugin.R ├── parse.R ├── rpp-package.R ├── rpp_dev.R ├── rpp_prod.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── man ├── inline_plugin.Rd ├── parse_text.Rd ├── roclets.Rd ├── rpp-package.Rd ├── rpp_to_dev.Rd └── rpp_to_prod.Rd ├── rpp.Rproj ├── script └── un-s4.R ├── tests ├── testthat.R └── testthat │ ├── _snaps │ └── parse.md │ ├── test-inline_plugin.R │ ├── test-parse.R │ └── test-rpp_prod.R └── vignettes ├── .gitignore └── plugins.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/R-CMD-check-dev.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/cancel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/cancel.yaml -------------------------------------------------------------------------------- /.github/workflows/lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/lock.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/revdep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/revdep.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | *_cache/ 3 | inst/doc 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Q-lang 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/inline_plugin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/R/inline_plugin.R -------------------------------------------------------------------------------- /R/parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/R/parse.R -------------------------------------------------------------------------------- /R/rpp-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/R/rpp-package.R -------------------------------------------------------------------------------- /R/rpp_dev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/R/rpp_dev.R -------------------------------------------------------------------------------- /R/rpp_prod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/R/rpp_prod.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /man/inline_plugin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/man/inline_plugin.Rd -------------------------------------------------------------------------------- /man/parse_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/man/parse_text.Rd -------------------------------------------------------------------------------- /man/roclets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/man/roclets.Rd -------------------------------------------------------------------------------- /man/rpp-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/man/rpp-package.Rd -------------------------------------------------------------------------------- /man/rpp_to_dev.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/man/rpp_to_dev.Rd -------------------------------------------------------------------------------- /man/rpp_to_prod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/man/rpp_to_prod.Rd -------------------------------------------------------------------------------- /rpp.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/rpp.Rproj -------------------------------------------------------------------------------- /script/un-s4.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/script/un-s4.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/tests/testthat/_snaps/parse.md -------------------------------------------------------------------------------- /tests/testthat/test-inline_plugin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/tests/testthat/test-inline_plugin.R -------------------------------------------------------------------------------- /tests/testthat/test-parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/tests/testthat/test-parse.R -------------------------------------------------------------------------------- /tests/testthat/test-rpp_prod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/tests/testthat/test-rpp_prod.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/plugins.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pre-processing-r/rpp/HEAD/vignettes/plugins.Rmd --------------------------------------------------------------------------------