gitextract_6_cfe080/ ├── .Rbuildignore ├── .git-blame-ignore-revs ├── .gitattributes ├── .github/ │ ├── .gitignore │ ├── 404.md │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── lint.yaml │ ├── netlify.yaml │ ├── no-pandoc.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ ├── site-languages.yml │ └── test-coverage.yaml ├── .gitignore ├── .lintr.R ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── build-404.R │ ├── build-article.R │ ├── build-articles.R │ ├── build-favicons.R │ ├── build-footer.R │ ├── build-github.R │ ├── build-home-authors.R │ ├── build-home-community.R │ ├── build-home-index.R │ ├── build-home-license.R │ ├── build-home-md.R │ ├── build-home.R │ ├── build-llm-dl.R │ ├── build-llm.R │ ├── build-logo.R │ ├── build-news.R │ ├── build-quarto-articles.R │ ├── build-redirects.R │ ├── build-reference-index.R │ ├── build-reference.R │ ├── build-search-docs.R │ ├── build-tutorials.R │ ├── build.R │ ├── check-built.R │ ├── check.R │ ├── clean.R │ ├── config.R │ ├── context.R │ ├── deploy-site.R │ ├── development.R │ ├── external-deps.R │ ├── figure.R │ ├── highlight.R │ ├── html-build.R │ ├── import-standalone-obj-type.R │ ├── import-standalone-types-check.R │ ├── init.R │ ├── markdown.R │ ├── navbar-menu.R │ ├── navbar.R │ ├── package.R │ ├── pkgdown-package.R │ ├── pkgdown.R │ ├── pkgdown_print.R │ ├── preview.R │ ├── rd-data.R │ ├── rd-example.R │ ├── rd-html.R │ ├── rd.R │ ├── render.R │ ├── repo.R │ ├── template.R │ ├── templates.R │ ├── test.R │ ├── theme.R │ ├── topics-external.R │ ├── topics.R │ ├── tweak-homepage.R │ ├── tweak-navbar.R │ ├── tweak-page.R │ ├── tweak-reference.R │ ├── tweak-tabset.R │ ├── tweak-tags.R │ ├── tweak.R │ ├── usage.R │ ├── utils-fs.R │ ├── utils-io.R │ ├── utils-pdf.R │ └── utils.R ├── README.Rmd ├── README.md ├── air.toml ├── codecov.yml ├── cran-comments.md ├── inst/ │ ├── BS3/ │ │ ├── assets/ │ │ │ ├── bootstrap-toc.css │ │ │ ├── bootstrap-toc.js │ │ │ ├── docsearch.css │ │ │ ├── docsearch.js │ │ │ ├── pkgdown.css │ │ │ └── pkgdown.js │ │ └── templates/ │ │ ├── after-body.html │ │ ├── before-body.html │ │ ├── config-docsearch.json │ │ ├── content-article-index.html │ │ ├── content-article.html │ │ ├── content-citation-authors.html │ │ ├── content-home.html │ │ ├── content-news-index.html │ │ ├── content-news.html │ │ ├── content-reference-index.html │ │ ├── content-reference-topic.html │ │ ├── content-title-body.html │ │ ├── content-tutorial-index.html │ │ ├── content-tutorial.html │ │ ├── docsearch.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── in-header.html │ │ ├── layout-redirect.html │ │ ├── layout.html │ │ └── navbar.html │ ├── BS5/ │ │ ├── assets/ │ │ │ ├── katex-auto.js │ │ │ ├── lightswitch.js │ │ │ ├── pkgdown.js │ │ │ └── pkgdown.scss │ │ └── templates/ │ │ ├── after-body.html │ │ ├── before-body.html │ │ ├── config-docsearch.json │ │ ├── content-article-index.html │ │ ├── content-article.html │ │ ├── content-authors.html │ │ ├── content-citation-authors.html │ │ ├── content-home.html │ │ ├── content-news-index.html │ │ ├── content-news.html │ │ ├── content-quarto.html │ │ ├── content-reference-index.html │ │ ├── content-reference-topic.html │ │ ├── content-title-body.html │ │ ├── content-tutorial-index.html │ │ ├── content-tutorial.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── in-header.html │ │ ├── layout-redirect.html │ │ ├── layout.html │ │ └── navbar.html │ ├── highlight-styles/ │ │ ├── a11y-dark.scss │ │ ├── a11y-light.scss │ │ ├── arrow-dark.scss │ │ ├── arrow-light.scss │ │ ├── atom-one-dark.scss │ │ ├── atom-one-light.scss │ │ ├── ayu-dark.scss │ │ ├── ayu-light.scss │ │ ├── ayu-mirage.scss │ │ ├── breeze-dark.scss │ │ ├── breeze-light.scss │ │ ├── breezedark.scss │ │ ├── dracula.scss │ │ ├── espresso.scss │ │ ├── github-dark.scss │ │ ├── github-light.scss │ │ ├── gruvbox-dark.scss │ │ ├── gruvbox-light.scss │ │ ├── haddock.scss │ │ ├── kate.scss │ │ ├── monochrome-dark.scss │ │ ├── monochrome-light.scss │ │ ├── monochrome.scss │ │ ├── monokai.scss │ │ ├── nord.scss │ │ ├── oblivion.scss │ │ ├── printing.scss │ │ ├── pygments.scss │ │ ├── radical.scss │ │ ├── solarized-dark.scss │ │ ├── solarized-light.scss │ │ ├── solarized.scss │ │ ├── tango.scss │ │ ├── vim-dark.scss │ │ └── zenburn.scss │ ├── po/ │ │ ├── ca/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── de/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── dk/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── es/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── fr/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── ja/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── ko/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── kr/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── nl/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── pt/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ ├── tr/ │ │ │ └── LC_MESSAGES/ │ │ │ └── R-pkgdown.mo │ │ └── zh_CN/ │ │ └── LC_MESSAGES/ │ │ └── R-pkgdown.mo │ ├── quarto/ │ │ └── template.html │ └── rstudio/ │ └── addins.dcf ├── man/ │ ├── as_pkgdown.Rd │ ├── build_articles.Rd │ ├── build_favicons.Rd │ ├── build_home.Rd │ ├── build_llm_docs.Rd │ ├── build_news.Rd │ ├── build_redirects.Rd │ ├── build_reference.Rd │ ├── build_search.Rd │ ├── build_site.Rd │ ├── build_site_github_pages.Rd │ ├── build_tutorials.Rd │ ├── check_pkgdown.Rd │ ├── clean.Rd │ ├── deploy_site_github.Rd │ ├── deploy_to_branch.Rd │ ├── fig_settings.Rd │ ├── in_pkgdown.Rd │ ├── index.Rd │ ├── init_site.Rd │ ├── pkgdown-package.Rd │ ├── pkgdown_print.Rd │ ├── preview_site.Rd │ ├── rd2html.Rd │ ├── render_page.Rd │ ├── stop_preview.Rd │ ├── templates.Rd │ ├── test-crayon.Rd │ ├── test-dont.Rd │ ├── test-figures.Rd │ ├── test-links.Rd │ ├── test-lists.Rd │ ├── test-long-lines.Rd │ ├── test-math-examples.Rd │ ├── test-output-styles.Rd │ ├── test-params.Rd │ ├── test-sexpr-title.Rd │ ├── test-tables.Rd │ └── test-verbatim.Rd ├── pkgdown/ │ ├── _pkgdown.yml │ └── favicon/ │ └── site.webmanifest ├── pkgdown.Rproj ├── po/ │ ├── R-ca.po │ ├── R-de.po │ ├── R-dk.po │ ├── R-es.po │ ├── R-fr.po │ ├── R-ja.po │ ├── R-ko.po │ ├── R-nl.po │ ├── R-pkgdown.pot │ ├── R-pt.po │ ├── R-tr.po │ └── R-zh_CN.po ├── revdep/ │ ├── .gitignore │ ├── README.md │ ├── cran.md │ ├── email.yml │ ├── failures.md │ └── problems.md ├── tests/ │ ├── testthat/ │ │ ├── .gitignore │ │ ├── _snaps/ │ │ │ ├── build-article.md │ │ │ ├── build-articles.md │ │ │ ├── build-favicons.md │ │ │ ├── build-footer.md │ │ │ ├── build-github.md │ │ │ ├── build-home-authors.md │ │ │ ├── build-home-community.md │ │ │ ├── build-home-index.md │ │ │ ├── build-llm-dl.md │ │ │ ├── build-llm.md │ │ │ ├── build-news.md │ │ │ ├── build-quarto-articles.md │ │ │ ├── build-redirects.md │ │ │ ├── build-reference-index.md │ │ │ ├── build-reference.md │ │ │ ├── build-search-docs.md │ │ │ ├── check-built.md │ │ │ ├── check.md │ │ │ ├── config.md │ │ │ ├── development.md │ │ │ ├── external-deps.md │ │ │ ├── highlight.md │ │ │ ├── init.md │ │ │ ├── markdown.md │ │ │ ├── navbar-menu.md │ │ │ ├── navbar.md │ │ │ ├── not-in-rcmcheck/ │ │ │ │ └── build-article.md │ │ │ ├── package.md │ │ │ ├── preview.md │ │ │ ├── rcmdcheck/ │ │ │ │ └── build-article.md │ │ │ ├── rd-example.md │ │ │ ├── rd-html.md │ │ │ ├── render.md │ │ │ ├── repo.md │ │ │ ├── templates.md │ │ │ ├── theme.md │ │ │ ├── topics-external.md │ │ │ ├── topics.md │ │ │ ├── tweak-homepage.md │ │ │ ├── tweak-tabset.md │ │ │ ├── tweak-tags.md │ │ │ ├── usage.md │ │ │ └── utils-fs.md │ │ ├── assets/ │ │ │ ├── -find-assets.html │ │ │ ├── articles-images/ │ │ │ │ ├── .gitignore │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── README.md │ │ │ │ ├── _pkgdown.yml │ │ │ │ ├── man/ │ │ │ │ │ └── kitten.Rd │ │ │ │ ├── man-figures.Rproj │ │ │ │ └── vignettes/ │ │ │ │ ├── .gitignore │ │ │ │ └── kitten.Rmd │ │ │ ├── figure/ │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── _pkgdown.yml │ │ │ │ ├── man/ │ │ │ │ │ └── figure.Rd │ │ │ │ └── vignettes/ │ │ │ │ └── figures.Rmd │ │ │ ├── llm.html │ │ │ ├── reference/ │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R/ │ │ │ │ │ └── funs.R │ │ │ │ ├── _pkgdown.yml │ │ │ │ └── man/ │ │ │ │ ├── a.Rd │ │ │ │ ├── b.Rd │ │ │ │ ├── c.Rd │ │ │ │ ├── e.Rd │ │ │ │ ├── f.Rd │ │ │ │ ├── g.Rd │ │ │ │ └── help.Rd │ │ │ ├── reference-fail/ │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R/ │ │ │ │ │ └── f.R │ │ │ │ └── man/ │ │ │ │ └── f.Rd │ │ │ ├── reference-html-dep/ │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R/ │ │ │ │ │ └── funs.R │ │ │ │ ├── _pkgdown.yml │ │ │ │ └── man/ │ │ │ │ └── a.Rd │ │ │ ├── reference-language/ │ │ │ │ ├── one/ │ │ │ │ │ └── DESCRIPTION │ │ │ │ └── two/ │ │ │ │ └── DESCRIPTION │ │ │ ├── reference-pre-post/ │ │ │ │ ├── DESCRIPTION │ │ │ │ └── pkgdown/ │ │ │ │ ├── post-reference.R │ │ │ │ └── pre-reference.R │ │ │ ├── reference-selector/ │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── NEWS.md │ │ │ │ ├── R/ │ │ │ │ │ └── funs.R │ │ │ │ ├── _pkgdown.yml │ │ │ │ └── man/ │ │ │ │ ├── A.Rd │ │ │ │ └── matches.Rd │ │ │ ├── sitemaps-schema-0.9.xsd │ │ │ └── templates-local/ │ │ │ ├── DESCRIPTION │ │ │ └── pkgdown/ │ │ │ └── templates/ │ │ │ ├── content-article.html │ │ │ └── footer-article.html │ │ ├── helper.R │ │ ├── test-build-article.R │ │ ├── test-build-articles.R │ │ ├── test-build-favicons.R │ │ ├── test-build-footer.R │ │ ├── test-build-github.R │ │ ├── test-build-home-authors.R │ │ ├── test-build-home-community.R │ │ ├── test-build-home-index.R │ │ ├── test-build-home-license.R │ │ ├── test-build-home-md.R │ │ ├── test-build-home.R │ │ ├── test-build-llm-dl.R │ │ ├── test-build-llm.R │ │ ├── test-build-logo.R │ │ ├── test-build-news.R │ │ ├── test-build-quarto-articles.R │ │ ├── test-build-redirects.R │ │ ├── test-build-reference-index.R │ │ ├── test-build-reference.R │ │ ├── test-build-search-docs.R │ │ ├── test-build-tutorials.R │ │ ├── test-build.R │ │ ├── test-check-built.R │ │ ├── test-check.R │ │ ├── test-config.R │ │ ├── test-deploy-site.R │ │ ├── test-development.R │ │ ├── test-external-deps.R │ │ ├── test-figure.R │ │ ├── test-highlight.R │ │ ├── test-html-build.R │ │ ├── test-init.R │ │ ├── test-markdown.R │ │ ├── test-navbar-menu.R │ │ ├── test-navbar.R │ │ ├── test-package.R │ │ ├── test-pkgdown_print.R │ │ ├── test-preview.R │ │ ├── test-rd-data.R │ │ ├── test-rd-example.R │ │ ├── test-rd-html.R │ │ ├── test-render.R │ │ ├── test-repo.R │ │ ├── test-templates.R │ │ ├── test-theme.R │ │ ├── test-topics-external.R │ │ ├── test-topics.R │ │ ├── test-tweak-homepage.R │ │ ├── test-tweak-navbar.R │ │ ├── test-tweak-page.R │ │ ├── test-tweak-reference.R │ │ ├── test-tweak-tabset.R │ │ ├── test-tweak-tags.R │ │ ├── test-usage.R │ │ ├── test-utils-fs.R │ │ └── test-utils.R │ └── testthat.R ├── tools/ │ └── syntax-highlight.R └── vignettes/ ├── .gitignore ├── accessibility.Rmd ├── articles/ │ ├── .gitignore │ ├── test-quarto-article.qmd │ └── test-rmarkdown-article.Rmd ├── customise.Rmd ├── how-to-update-released-site.Rmd ├── linking.Rmd ├── metadata.Rmd ├── pkgdown.Rmd ├── quarto.qmd ├── test/ │ ├── jss.Rmd │ ├── jss.bib │ ├── jss.bst │ ├── jss.cls │ ├── long-toc.Rmd │ ├── pdf.Rmd │ ├── quarto-features.qmd │ ├── rendering.Rmd │ ├── short.Rmd │ ├── test.txt │ └── widgets.Rmd └── translations.Rmd