├── .Rbuildignore ├── .Rprofile ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── knitr-helpers.R ├── notestar-package.R ├── tar-notebook.R ├── use-notestar.R ├── utils-tidy-eval.R └── zzz-force-dependencies.R ├── README.Rmd ├── README.md ├── inst └── templates │ ├── 0000-00-00-demo-post.Rmd │ ├── 0000-00-00-references.Rmd │ ├── Makefile │ ├── _targets.R │ ├── apa.csl │ ├── config.yml │ ├── downlit.css │ ├── functions.R │ ├── index.Rmd │ ├── knitr-helpers.R │ └── refs.bib ├── man ├── figures │ ├── README-network-3-1.png │ ├── README-network1-1.png │ ├── README-network2-1.png │ ├── README-shot1-1.png │ ├── README-shot2-1.png │ ├── README-shot3-1.png │ ├── README-shot4-1.png │ ├── README-unnamed-chunk-14-1.png │ ├── README-unnamed-chunk-19-1.png │ ├── README-unnamed-chunk-21-1.png │ ├── README-unnamed-chunk-22-1.png │ ├── README-unnamed-chunk-23-1.png │ └── README-unnamed-chunk-24-1.png ├── notebook_browse.Rd ├── notebook_create_page.Rd ├── notebook_knit_page.Rd ├── notebook_rmd_collate.Rd ├── notebook_write_yaml.Rd ├── notestar-package.Rd ├── set_knitr_opts.Rd ├── tar_notebook.Rd ├── tar_notebook_index_rmd.Rd ├── tar_notebook_pages.Rd ├── tidyeval.Rd └── use-notestar.Rd ├── notestar.Rproj └── tests ├── testthat.R └── testthat ├── helper-fixtures.R ├── test-knitr-helpers.R └── test-setup.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- 1 | options(WrapRmd.width = 72) 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/knitr-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/R/knitr-helpers.R -------------------------------------------------------------------------------- /R/notestar-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/R/notestar-package.R -------------------------------------------------------------------------------- /R/tar-notebook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/R/tar-notebook.R -------------------------------------------------------------------------------- /R/use-notestar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/R/use-notestar.R -------------------------------------------------------------------------------- /R/utils-tidy-eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/R/utils-tidy-eval.R -------------------------------------------------------------------------------- /R/zzz-force-dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/R/zzz-force-dependencies.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/README.md -------------------------------------------------------------------------------- /inst/templates/0000-00-00-demo-post.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/0000-00-00-demo-post.Rmd -------------------------------------------------------------------------------- /inst/templates/0000-00-00-references.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/0000-00-00-references.Rmd -------------------------------------------------------------------------------- /inst/templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/Makefile -------------------------------------------------------------------------------- /inst/templates/_targets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/_targets.R -------------------------------------------------------------------------------- /inst/templates/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/apa.csl -------------------------------------------------------------------------------- /inst/templates/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/config.yml -------------------------------------------------------------------------------- /inst/templates/downlit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/downlit.css -------------------------------------------------------------------------------- /inst/templates/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/functions.R -------------------------------------------------------------------------------- /inst/templates/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/index.Rmd -------------------------------------------------------------------------------- /inst/templates/knitr-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/knitr-helpers.R -------------------------------------------------------------------------------- /inst/templates/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/inst/templates/refs.bib -------------------------------------------------------------------------------- /man/figures/README-network-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-network-3-1.png -------------------------------------------------------------------------------- /man/figures/README-network1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-network1-1.png -------------------------------------------------------------------------------- /man/figures/README-network2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-network2-1.png -------------------------------------------------------------------------------- /man/figures/README-shot1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-shot1-1.png -------------------------------------------------------------------------------- /man/figures/README-shot2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-shot2-1.png -------------------------------------------------------------------------------- /man/figures/README-shot3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-shot3-1.png -------------------------------------------------------------------------------- /man/figures/README-shot4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-shot4-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/figures/README-unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /man/notebook_browse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/notebook_browse.Rd -------------------------------------------------------------------------------- /man/notebook_create_page.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/notebook_create_page.Rd -------------------------------------------------------------------------------- /man/notebook_knit_page.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/notebook_knit_page.Rd -------------------------------------------------------------------------------- /man/notebook_rmd_collate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/notebook_rmd_collate.Rd -------------------------------------------------------------------------------- /man/notebook_write_yaml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/notebook_write_yaml.Rd -------------------------------------------------------------------------------- /man/notestar-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/notestar-package.Rd -------------------------------------------------------------------------------- /man/set_knitr_opts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/set_knitr_opts.Rd -------------------------------------------------------------------------------- /man/tar_notebook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/tar_notebook.Rd -------------------------------------------------------------------------------- /man/tar_notebook_index_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/tar_notebook_index_rmd.Rd -------------------------------------------------------------------------------- /man/tar_notebook_pages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/tar_notebook_pages.Rd -------------------------------------------------------------------------------- /man/tidyeval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/tidyeval.Rd -------------------------------------------------------------------------------- /man/use-notestar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/man/use-notestar.Rd -------------------------------------------------------------------------------- /notestar.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/notestar.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-fixtures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/tests/testthat/helper-fixtures.R -------------------------------------------------------------------------------- /tests/testthat/test-knitr-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/tests/testthat/test-knitr-helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/notestar/HEAD/tests/testthat/test-setup.R --------------------------------------------------------------------------------