├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.md └── workflows │ ├── R-CMD-check.yaml │ ├── format-suggest.yaml │ ├── lint-changed-files.yaml │ ├── pkgcheck.yaml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── CITATION.cff ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── helper-quarto.R ├── register.R ├── render.R ├── ui.R ├── utils-yaml.R └── utils.R ├── README.md ├── _pkgdown.yml ├── babelquarto.Rproj ├── codemeta.json ├── man ├── figures │ └── logo.png ├── filter_freeze_directory.Rd ├── quarto_multilingual_book.Rd ├── read_yaml.Rd ├── register_further_languages.Rd ├── register_main_language.Rd └── render.Rd ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── helper-quarto.md │ ├── register.md │ ├── register │ │ ├── _quarto.yml │ │ ├── _quarto2.yml │ │ └── _quarto3.yml │ ├── render │ │ └── sitemap.xml │ └── ui.md │ ├── helper-fs.R │ ├── helper-snap.R │ ├── metadata.html │ ├── setup.R │ ├── test-helper-quarto.R │ ├── test-register.R │ ├── test-render.R │ ├── test-ui.R │ └── test-utils.R └── vignettes ├── .gitignore ├── babelquarto.qmd ├── configuration.qmd ├── convert.qmd ├── custom-templates.qmd └── render-with-ci.qmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/format-suggest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.github/workflows/format-suggest.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-changed-files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.github/workflows/lint-changed-files.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.github/workflows/pkgcheck.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/.lintr -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: babelquarto authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/helper-quarto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/R/helper-quarto.R -------------------------------------------------------------------------------- /R/register.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/R/register.R -------------------------------------------------------------------------------- /R/render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/R/render.R -------------------------------------------------------------------------------- /R/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/R/ui.R -------------------------------------------------------------------------------- /R/utils-yaml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/R/utils-yaml.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: ~ 2 | template: 3 | bootstrap: 5 4 | 5 | -------------------------------------------------------------------------------- /babelquarto.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/babelquarto.Rproj -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/codemeta.json -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/filter_freeze_directory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/man/filter_freeze_directory.Rd -------------------------------------------------------------------------------- /man/quarto_multilingual_book.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/man/quarto_multilingual_book.Rd -------------------------------------------------------------------------------- /man/read_yaml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/man/read_yaml.Rd -------------------------------------------------------------------------------- /man/register_further_languages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/man/register_further_languages.Rd -------------------------------------------------------------------------------- /man/register_main_language.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/man/register_main_language.Rd -------------------------------------------------------------------------------- /man/render.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/man/render.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/helper-quarto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/_snaps/helper-quarto.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/_snaps/register.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/register/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/_snaps/register/_quarto.yml -------------------------------------------------------------------------------- /tests/testthat/_snaps/register/_quarto2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/_snaps/register/_quarto2.yml -------------------------------------------------------------------------------- /tests/testthat/_snaps/register/_quarto3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/_snaps/register/_quarto3.yml -------------------------------------------------------------------------------- /tests/testthat/_snaps/render/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/_snaps/render/sitemap.xml -------------------------------------------------------------------------------- /tests/testthat/_snaps/ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/_snaps/ui.md -------------------------------------------------------------------------------- /tests/testthat/helper-fs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/helper-fs.R -------------------------------------------------------------------------------- /tests/testthat/helper-snap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/helper-snap.R -------------------------------------------------------------------------------- /tests/testthat/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/metadata.html -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-helper-quarto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/test-helper-quarto.R -------------------------------------------------------------------------------- /tests/testthat/test-register.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/test-register.R -------------------------------------------------------------------------------- /tests/testthat/test-render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/test-render.R -------------------------------------------------------------------------------- /tests/testthat/test-ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/test-ui.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /vignettes/babelquarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/vignettes/babelquarto.qmd -------------------------------------------------------------------------------- /vignettes/configuration.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/vignettes/configuration.qmd -------------------------------------------------------------------------------- /vignettes/convert.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/vignettes/convert.qmd -------------------------------------------------------------------------------- /vignettes/custom-templates.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/vignettes/custom-templates.qmd -------------------------------------------------------------------------------- /vignettes/render-with-ci.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-review-tools/babelquarto/HEAD/vignettes/render-with-ci.qmd --------------------------------------------------------------------------------