├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── helpers.R ├── post.R ├── utils-http.R ├── utils-pipe.R ├── utils-rmd.R └── utils.r ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── goodpress.Rproj ├── inst ├── css │ └── code.css ├── post-example │ ├── .wordpress.yml │ ├── figs │ │ └── dimitri-houtteman-93AcQpzcASE-unsplash.jpg │ ├── index.Rmd │ └── index.md ├── post-example2 │ ├── .wordpress.yml │ ├── chicago-fullnote-bibliography.csl │ ├── figs │ │ ├── pressure-1.png │ │ └── unnamed-chunk-1-1.png │ ├── index.Rmd │ ├── index.md │ └── refs.bib ├── post-example3 │ ├── .wordpress.yml │ ├── index.Rmd │ ├── index.html │ └── index.md └── rmarkdown │ └── templates │ └── template-name │ ├── skeleton │ └── skeleton.Rmd │ └── template.yaml ├── man ├── pipe.Rd ├── read_more.Rd ├── rmdhunks │ ├── installation.Rmd │ ├── motivation.Rmd │ └── usage.Rmd ├── wp_categories.Rd ├── wp_post.Rd └── wp_tags.Rd ├── tests ├── fixtures │ └── example2.yml ├── testthat.R └── testthat │ ├── helper-goodpress.R │ ├── test-wp_post.R │ └── wordpress.yml └── vignettes ├── .gitignore ├── goodpress.Rmd └── setup.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | tests/fixtures/**/* -diff 3 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Maëlle Salmon 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/R/post.R -------------------------------------------------------------------------------- /R/utils-http.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/R/utils-http.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils-rmd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/R/utils-rmd.R -------------------------------------------------------------------------------- /R/utils.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/R/utils.r -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/codecov.yml -------------------------------------------------------------------------------- /goodpress.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/goodpress.Rproj -------------------------------------------------------------------------------- /inst/css/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/css/code.css -------------------------------------------------------------------------------- /inst/post-example/.wordpress.yml: -------------------------------------------------------------------------------- 1 | URL: https://rmd-wordpress.eu/post-slug/ 2 | id: 270 3 | -------------------------------------------------------------------------------- /inst/post-example/figs/dimitri-houtteman-93AcQpzcASE-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example/figs/dimitri-houtteman-93AcQpzcASE-unsplash.jpg -------------------------------------------------------------------------------- /inst/post-example/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example/index.Rmd -------------------------------------------------------------------------------- /inst/post-example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example/index.md -------------------------------------------------------------------------------- /inst/post-example2/.wordpress.yml: -------------------------------------------------------------------------------- 1 | URL: https://rmd-wordpress.eu/post-rmd/ 2 | id: 266 3 | -------------------------------------------------------------------------------- /inst/post-example2/chicago-fullnote-bibliography.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example2/chicago-fullnote-bibliography.csl -------------------------------------------------------------------------------- /inst/post-example2/figs/pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example2/figs/pressure-1.png -------------------------------------------------------------------------------- /inst/post-example2/figs/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example2/figs/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /inst/post-example2/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example2/index.Rmd -------------------------------------------------------------------------------- /inst/post-example2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example2/index.md -------------------------------------------------------------------------------- /inst/post-example2/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example2/refs.bib -------------------------------------------------------------------------------- /inst/post-example3/.wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example3/.wordpress.yml -------------------------------------------------------------------------------- /inst/post-example3/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example3/index.Rmd -------------------------------------------------------------------------------- /inst/post-example3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example3/index.html -------------------------------------------------------------------------------- /inst/post-example3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/post-example3/index.md -------------------------------------------------------------------------------- /inst/rmarkdown/templates/template-name/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/rmarkdown/templates/template-name/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/template-name/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/inst/rmarkdown/templates/template-name/template.yaml -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/read_more.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/read_more.Rd -------------------------------------------------------------------------------- /man/rmdhunks/installation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/rmdhunks/installation.Rmd -------------------------------------------------------------------------------- /man/rmdhunks/motivation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/rmdhunks/motivation.Rmd -------------------------------------------------------------------------------- /man/rmdhunks/usage.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/rmdhunks/usage.Rmd -------------------------------------------------------------------------------- /man/wp_categories.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/wp_categories.Rd -------------------------------------------------------------------------------- /man/wp_post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/wp_post.Rd -------------------------------------------------------------------------------- /man/wp_tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/man/wp_tags.Rd -------------------------------------------------------------------------------- /tests/fixtures/example2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/tests/fixtures/example2.yml -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-goodpress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/tests/testthat/helper-goodpress.R -------------------------------------------------------------------------------- /tests/testthat/test-wp_post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/tests/testthat/test-wp_post.R -------------------------------------------------------------------------------- /tests/testthat/wordpress.yml: -------------------------------------------------------------------------------- 1 | URL: https://rmd-wordpress.eu/post-rmd/ 2 | id: 74 3 | -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/goodpress.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/vignettes/goodpress.Rmd -------------------------------------------------------------------------------- /vignettes/setup.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranovskypd/goodpress/HEAD/vignettes/setup.Rmd --------------------------------------------------------------------------------