├── .Rbuildignore ├── .covrignore ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── SUPPORT.md ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── check-mac.yaml │ ├── check-ubuntu-devel.yaml │ ├── check-ubuntu-oldrel.yaml │ ├── check-ubuntu-release.yaml │ ├── lint.yaml │ ├── main.yml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ ├── render-readme.yaml │ ├── test-coverage.yaml │ └── write-codemeta.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── bulk_replace.R ├── create_yaml_header.R ├── export_template.R ├── extract_draft.R ├── extract_pattern.R ├── heddle.R ├── heddlr-package.R ├── import_draft.R ├── import_pattern.R ├── make_template.R ├── provide_parameters.R └── use_parameters.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── appveyor.yml ├── codecov.yml ├── codemeta.json ├── cran-comments.md ├── docs ├── 404.html ├── CODE_OF_CONDUCT.html ├── CONTRIBUTING.html ├── ISSUE_TEMPLATE.html ├── LICENSE-text.html ├── SUPPORT.html ├── articles │ ├── control-flow-with-heddlr.html │ ├── index.html │ └── modular-reporting-with-heddlr.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── flights-example │ ├── flexdashboards-with-heddlr.Rmd │ ├── flexdashboards-with-heddlr.html │ ├── flights_dashboard.Rmd │ ├── flights_dashboard.html │ ├── flights_month_level.Rmd │ └── flights_site_level.Rmd ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── assemble_draft.html │ ├── bulk_replace.html │ ├── create_yaml_header.html │ ├── export_template.html │ ├── extract_draft.html │ ├── extract_pattern.html │ ├── figures │ │ ├── heddlr-badge.png │ │ └── heddlr-badge.svg │ ├── heddle.html │ ├── heddlr-package.html │ ├── import_draft.html │ ├── import_pattern.html │ ├── index.html │ ├── make_template.html │ ├── provide_parameters.html │ ├── tidyeval.html │ └── use_parameters.html └── sitemap.xml ├── man ├── assemble_draft.Rd ├── bulk_replace.Rd ├── create_yaml_header.Rd ├── export_template.Rd ├── extract_draft.Rd ├── extract_pattern.Rd ├── figures │ ├── heddlr-badge.png │ └── heddlr-badge.svg ├── heddle.Rd ├── heddlr-package.Rd ├── import_draft.Rd ├── import_pattern.Rd ├── make_template.Rd ├── provide_parameters.Rd └── use_parameters.Rd ├── paper.bib ├── paper.md ├── prepare_development_branch.sh ├── tests ├── rmd │ ├── empty_file.Rmd │ ├── export_template_output.Rmd │ ├── flights_dashboard.Rmd │ ├── no_parameters.Rmd │ ├── pattern_extraction.Rmd │ └── sample_pattern.Rmd ├── testthat.R └── testthat │ ├── test-bulk_replace.R │ ├── test-create_yaml_header.R │ ├── test-export_template.R │ ├── test-extract_draft.R │ ├── test-extract_pattern.R │ ├── test-heddle.R │ ├── test-import_draft.R │ ├── test-import_pattern.R │ ├── test-make_template.R │ ├── test-provide_parameters.R │ └── test-use_parameters.R └── vignettes ├── .gitignore └── modular-reporting-with-heddlr.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.covrignore -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/check-mac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/check-mac.yaml -------------------------------------------------------------------------------- /.github/workflows/check-ubuntu-devel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/check-ubuntu-devel.yaml -------------------------------------------------------------------------------- /.github/workflows/check-ubuntu-oldrel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/check-ubuntu-oldrel.yaml -------------------------------------------------------------------------------- /.github/workflows/check-ubuntu-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/check-ubuntu-release.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/render-readme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/render-readme.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/write-codemeta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.github/workflows/write-codemeta.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Michael Mahoney 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/bulk_replace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/bulk_replace.R -------------------------------------------------------------------------------- /R/create_yaml_header.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/create_yaml_header.R -------------------------------------------------------------------------------- /R/export_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/export_template.R -------------------------------------------------------------------------------- /R/extract_draft.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/extract_draft.R -------------------------------------------------------------------------------- /R/extract_pattern.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/extract_pattern.R -------------------------------------------------------------------------------- /R/heddle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/heddle.R -------------------------------------------------------------------------------- /R/heddlr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/heddlr-package.R -------------------------------------------------------------------------------- /R/import_draft.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/import_draft.R -------------------------------------------------------------------------------- /R/import_pattern.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/import_pattern.R -------------------------------------------------------------------------------- /R/make_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/make_template.R -------------------------------------------------------------------------------- /R/provide_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/provide_parameters.R -------------------------------------------------------------------------------- /R/use_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/R/use_parameters.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/CONTRIBUTING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/CONTRIBUTING.html -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/ISSUE_TEMPLATE.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/SUPPORT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/SUPPORT.html -------------------------------------------------------------------------------- /docs/articles/control-flow-with-heddlr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/articles/control-flow-with-heddlr.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/modular-reporting-with-heddlr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/articles/modular-reporting-with-heddlr.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/flights-example/flexdashboards-with-heddlr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/flights-example/flexdashboards-with-heddlr.Rmd -------------------------------------------------------------------------------- /docs/flights-example/flexdashboards-with-heddlr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/flights-example/flexdashboards-with-heddlr.html -------------------------------------------------------------------------------- /docs/flights-example/flights_dashboard.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/flights-example/flights_dashboard.Rmd -------------------------------------------------------------------------------- /docs/flights-example/flights_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/flights-example/flights_dashboard.html -------------------------------------------------------------------------------- /docs/flights-example/flights_month_level.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/flights-example/flights_month_level.Rmd -------------------------------------------------------------------------------- /docs/flights-example/flights_site_level.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/flights-example/flights_site_level.Rmd -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/assemble_draft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/assemble_draft.html -------------------------------------------------------------------------------- /docs/reference/bulk_replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/bulk_replace.html -------------------------------------------------------------------------------- /docs/reference/create_yaml_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/create_yaml_header.html -------------------------------------------------------------------------------- /docs/reference/export_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/export_template.html -------------------------------------------------------------------------------- /docs/reference/extract_draft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/extract_draft.html -------------------------------------------------------------------------------- /docs/reference/extract_pattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/extract_pattern.html -------------------------------------------------------------------------------- /docs/reference/figures/heddlr-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/figures/heddlr-badge.png -------------------------------------------------------------------------------- /docs/reference/figures/heddlr-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/figures/heddlr-badge.svg -------------------------------------------------------------------------------- /docs/reference/heddle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/heddle.html -------------------------------------------------------------------------------- /docs/reference/heddlr-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/heddlr-package.html -------------------------------------------------------------------------------- /docs/reference/import_draft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/import_draft.html -------------------------------------------------------------------------------- /docs/reference/import_pattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/import_pattern.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/make_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/make_template.html -------------------------------------------------------------------------------- /docs/reference/provide_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/provide_parameters.html -------------------------------------------------------------------------------- /docs/reference/tidyeval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/tidyeval.html -------------------------------------------------------------------------------- /docs/reference/use_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/reference/use_parameters.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /man/assemble_draft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/assemble_draft.Rd -------------------------------------------------------------------------------- /man/bulk_replace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/bulk_replace.Rd -------------------------------------------------------------------------------- /man/create_yaml_header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/create_yaml_header.Rd -------------------------------------------------------------------------------- /man/export_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/export_template.Rd -------------------------------------------------------------------------------- /man/extract_draft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/extract_draft.Rd -------------------------------------------------------------------------------- /man/extract_pattern.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/extract_pattern.Rd -------------------------------------------------------------------------------- /man/figures/heddlr-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/figures/heddlr-badge.png -------------------------------------------------------------------------------- /man/figures/heddlr-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/figures/heddlr-badge.svg -------------------------------------------------------------------------------- /man/heddle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/heddle.Rd -------------------------------------------------------------------------------- /man/heddlr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/heddlr-package.Rd -------------------------------------------------------------------------------- /man/import_draft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/import_draft.Rd -------------------------------------------------------------------------------- /man/import_pattern.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/import_pattern.Rd -------------------------------------------------------------------------------- /man/make_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/make_template.Rd -------------------------------------------------------------------------------- /man/provide_parameters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/provide_parameters.Rd -------------------------------------------------------------------------------- /man/use_parameters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/man/use_parameters.Rd -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/paper.md -------------------------------------------------------------------------------- /prepare_development_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/prepare_development_branch.sh -------------------------------------------------------------------------------- /tests/rmd/empty_file.Rmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rmd/export_template_output.Rmd: -------------------------------------------------------------------------------- 1 | ## True Facts 2 | 3 | ```{r} 4 | print("heddlr is great!") 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /tests/rmd/flights_dashboard.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/rmd/flights_dashboard.Rmd -------------------------------------------------------------------------------- /tests/rmd/no_parameters.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: I rule! 3 | output: html_document 4 | --- 5 | 6 | You know it! 7 | -------------------------------------------------------------------------------- /tests/rmd/pattern_extraction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/rmd/pattern_extraction.Rmd -------------------------------------------------------------------------------- /tests/rmd/sample_pattern.Rmd: -------------------------------------------------------------------------------- 1 | ## True Facts 2 | 3 | ```{r} 4 | print("heddlr is great!") 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-bulk_replace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-bulk_replace.R -------------------------------------------------------------------------------- /tests/testthat/test-create_yaml_header.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-create_yaml_header.R -------------------------------------------------------------------------------- /tests/testthat/test-export_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-export_template.R -------------------------------------------------------------------------------- /tests/testthat/test-extract_draft.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-extract_draft.R -------------------------------------------------------------------------------- /tests/testthat/test-extract_pattern.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-extract_pattern.R -------------------------------------------------------------------------------- /tests/testthat/test-heddle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-heddle.R -------------------------------------------------------------------------------- /tests/testthat/test-import_draft.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-import_draft.R -------------------------------------------------------------------------------- /tests/testthat/test-import_pattern.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-import_pattern.R -------------------------------------------------------------------------------- /tests/testthat/test-make_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-make_template.R -------------------------------------------------------------------------------- /tests/testthat/test-provide_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-provide_parameters.R -------------------------------------------------------------------------------- /tests/testthat/test-use_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/tests/testthat/test-use_parameters.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/modular-reporting-with-heddlr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemahoney218/heddlr/HEAD/vignettes/modular-reporting-with-heddlr.Rmd --------------------------------------------------------------------------------