Source for the online book documenting the metacheck R package, built with Quarto.
The book collects the package's vignettes and documentation into a single structured, browsable resource.
You need Quarto and an R installation
with the metacheck package available:
pak::pkg_install("scienceverse/metacheck")Then render the book:
quarto renderThe rendered site is written to docs/ (configured in _quarto.yml), which can
be served by GitHub Pages.
Chapters are configured with execute: freeze: true. Quarto will only re-run a
chapter's R code when that chapter's source changes, using the cached output in
_freeze/ otherwise. This keeps routine rebuilds fast and avoids re-running
network- or LLM-dependent code on every render.
To force a full re-execution, delete the _freeze/ directory before rendering.
index.qmd— landing page.chapters/— the polished chapters (sourced from the package vignettes).drafts/— work-in-progress and reference material from the package_stuff/folder; not guaranteed to render cleanly.images/— figures used by chapters.include/book.bib— merged bibliography for the whole book.include/apa.csl— APA 7th edition citation style.theme.scss— metacheck-branded styling.
Content follows the licensing of the metacheck package and its vignettes.