├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── pkgdown.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── brand_settings.R ├── froggeR-package.R ├── quarto_project.R ├── save_brand.R ├── save_variables.R ├── settings.R ├── utils.R ├── write_brand.R ├── write_ignore.R ├── write_notes.R ├── write_quarto.R ├── write_readme.R ├── write_scss.R └── write_variables.R ├── README.md ├── inst ├── WORDLIST └── gists │ ├── README.md │ ├── basic_quarto.qmd │ ├── brand.yml │ ├── config.yml │ ├── custom.scss │ ├── custom_quarto.qmd │ ├── gitignore_aggressive │ ├── gitignore_minimal │ ├── quarto.yml │ └── references.bib ├── man ├── brand_settings.Rd ├── figures │ ├── code_block_after.png │ ├── code_block_before.png │ ├── config-file.png │ ├── custom-scss-file.png │ ├── custom-yaml-init.png │ ├── custom-yaml-rendered.png │ ├── document_types.png │ ├── froggeR-init.png │ ├── froggeR_hex.svg │ ├── froggeR_logo.svg │ ├── frogger_logo.png │ ├── key-value.png │ ├── link_color_after.png │ ├── link_color_before.png │ ├── logo.png │ ├── logo.svg │ ├── new-froggeR-session.png │ ├── project_init.png │ ├── project_structure.png │ ├── project_yaml.png │ ├── settings-options.png │ ├── variables-init.png │ ├── variables-yml.png │ ├── write-quarto-example.png │ └── yaml-comparison.png ├── quarto_project.Rd ├── save_brand.Rd ├── save_variables.Rd ├── settings.Rd ├── write_brand.Rd ├── write_ignore.Rd ├── write_notes.Rd ├── write_quarto.Rd ├── write_readme.Rd ├── write_scss.Rd └── write_variables.Rd ├── pkgdown ├── _pkgdown.yml └── favicon │ ├── apple-touch-icon.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── tests ├── testthat.R └── testthat │ ├── test-brand_settings.R │ ├── test-quarto_project.R │ ├── test-save_brand.R │ ├── test-save_variables.R │ ├── test-settings.R │ ├── test-utils.R │ ├── test-write_brand.R │ ├── test-write_ignore.R │ ├── test-write_notes.R │ ├── test-write_quarto.R │ ├── test-write_readme.R │ ├── test-write_scss.R │ └── test-write_variables.R └── vignettes ├── .gitignore ├── building-your-brand-identity.Rmd ├── from-zero-to-project.Rmd ├── set-once-use-everywhere.Rmd └── your-metadata-your-way.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Kyle Grealis 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/brand_settings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/brand_settings.R -------------------------------------------------------------------------------- /R/froggeR-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/froggeR-package.R -------------------------------------------------------------------------------- /R/quarto_project.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/quarto_project.R -------------------------------------------------------------------------------- /R/save_brand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/save_brand.R -------------------------------------------------------------------------------- /R/save_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/save_variables.R -------------------------------------------------------------------------------- /R/settings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/settings.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/write_brand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/write_brand.R -------------------------------------------------------------------------------- /R/write_ignore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/write_ignore.R -------------------------------------------------------------------------------- /R/write_notes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/write_notes.R -------------------------------------------------------------------------------- /R/write_quarto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/write_quarto.R -------------------------------------------------------------------------------- /R/write_readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/write_readme.R -------------------------------------------------------------------------------- /R/write_scss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/write_scss.R -------------------------------------------------------------------------------- /R/write_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/R/write_variables.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/README.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/gists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/README.md -------------------------------------------------------------------------------- /inst/gists/basic_quarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/basic_quarto.qmd -------------------------------------------------------------------------------- /inst/gists/brand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/brand.yml -------------------------------------------------------------------------------- /inst/gists/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/config.yml -------------------------------------------------------------------------------- /inst/gists/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/custom.scss -------------------------------------------------------------------------------- /inst/gists/custom_quarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/custom_quarto.qmd -------------------------------------------------------------------------------- /inst/gists/gitignore_aggressive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/gitignore_aggressive -------------------------------------------------------------------------------- /inst/gists/gitignore_minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/gitignore_minimal -------------------------------------------------------------------------------- /inst/gists/quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/quarto.yml -------------------------------------------------------------------------------- /inst/gists/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/inst/gists/references.bib -------------------------------------------------------------------------------- /man/brand_settings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/brand_settings.Rd -------------------------------------------------------------------------------- /man/figures/code_block_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/code_block_after.png -------------------------------------------------------------------------------- /man/figures/code_block_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/code_block_before.png -------------------------------------------------------------------------------- /man/figures/config-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/config-file.png -------------------------------------------------------------------------------- /man/figures/custom-scss-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/custom-scss-file.png -------------------------------------------------------------------------------- /man/figures/custom-yaml-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/custom-yaml-init.png -------------------------------------------------------------------------------- /man/figures/custom-yaml-rendered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/custom-yaml-rendered.png -------------------------------------------------------------------------------- /man/figures/document_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/document_types.png -------------------------------------------------------------------------------- /man/figures/froggeR-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/froggeR-init.png -------------------------------------------------------------------------------- /man/figures/froggeR_hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/froggeR_hex.svg -------------------------------------------------------------------------------- /man/figures/froggeR_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/froggeR_logo.svg -------------------------------------------------------------------------------- /man/figures/frogger_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/frogger_logo.png -------------------------------------------------------------------------------- /man/figures/key-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/key-value.png -------------------------------------------------------------------------------- /man/figures/link_color_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/link_color_after.png -------------------------------------------------------------------------------- /man/figures/link_color_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/link_color_before.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/figures/new-froggeR-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/new-froggeR-session.png -------------------------------------------------------------------------------- /man/figures/project_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/project_init.png -------------------------------------------------------------------------------- /man/figures/project_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/project_structure.png -------------------------------------------------------------------------------- /man/figures/project_yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/project_yaml.png -------------------------------------------------------------------------------- /man/figures/settings-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/settings-options.png -------------------------------------------------------------------------------- /man/figures/variables-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/variables-init.png -------------------------------------------------------------------------------- /man/figures/variables-yml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/variables-yml.png -------------------------------------------------------------------------------- /man/figures/write-quarto-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/write-quarto-example.png -------------------------------------------------------------------------------- /man/figures/yaml-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/figures/yaml-comparison.png -------------------------------------------------------------------------------- /man/quarto_project.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/quarto_project.Rd -------------------------------------------------------------------------------- /man/save_brand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/save_brand.Rd -------------------------------------------------------------------------------- /man/save_variables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/save_variables.Rd -------------------------------------------------------------------------------- /man/settings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/settings.Rd -------------------------------------------------------------------------------- /man/write_brand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/write_brand.Rd -------------------------------------------------------------------------------- /man/write_ignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/write_ignore.Rd -------------------------------------------------------------------------------- /man/write_notes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/write_notes.Rd -------------------------------------------------------------------------------- /man/write_quarto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/write_quarto.Rd -------------------------------------------------------------------------------- /man/write_readme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/write_readme.Rd -------------------------------------------------------------------------------- /man/write_scss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/write_scss.Rd -------------------------------------------------------------------------------- /man/write_variables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/man/write_variables.Rd -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-brand_settings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-brand_settings.R -------------------------------------------------------------------------------- /tests/testthat/test-quarto_project.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-quarto_project.R -------------------------------------------------------------------------------- /tests/testthat/test-save_brand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-save_brand.R -------------------------------------------------------------------------------- /tests/testthat/test-save_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-save_variables.R -------------------------------------------------------------------------------- /tests/testthat/test-settings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-settings.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-write_brand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-write_brand.R -------------------------------------------------------------------------------- /tests/testthat/test-write_ignore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-write_ignore.R -------------------------------------------------------------------------------- /tests/testthat/test-write_notes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-write_notes.R -------------------------------------------------------------------------------- /tests/testthat/test-write_quarto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-write_quarto.R -------------------------------------------------------------------------------- /tests/testthat/test-write_readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-write_readme.R -------------------------------------------------------------------------------- /tests/testthat/test-write_scss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-write_scss.R -------------------------------------------------------------------------------- /tests/testthat/test-write_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/tests/testthat/test-write_variables.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | 4 | /.quarto/ 5 | -------------------------------------------------------------------------------- /vignettes/building-your-brand-identity.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/vignettes/building-your-brand-identity.Rmd -------------------------------------------------------------------------------- /vignettes/from-zero-to-project.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/vignettes/from-zero-to-project.Rmd -------------------------------------------------------------------------------- /vignettes/set-once-use-everywhere.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/vignettes/set-once-use-everywhere.Rmd -------------------------------------------------------------------------------- /vignettes/your-metadata-your-way.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleGrealis/froggeR/HEAD/vignettes/your-metadata-your-way.Rmd --------------------------------------------------------------------------------