pkgdown/0000755000176200001440000000000014346333026011727 5ustar liggesuserspkgdown/NAMESPACE0000644000176200001440000000755014264337707013166 0ustar liggesusers# Generated by roxygen2: do not edit by hand S3method("[",tag) S3method(as_data,"NULL") S3method(as_data,tag_arguments) S3method(as_data,tag_author) S3method(as_data,tag_description) S3method(as_data,tag_details) S3method(as_data,tag_format) S3method(as_data,tag_note) S3method(as_data,tag_references) S3method(as_data,tag_section) S3method(as_data,tag_seealso) S3method(as_data,tag_source) S3method(as_data,tag_usage) S3method(as_data,tag_value) S3method(as_example,COMMENT) S3method(as_example,RCODE) S3method(as_example,TEXT) S3method(as_example,VERB) S3method(as_example,tag) S3method(as_example,tag_dontrun) S3method(as_example,tag_dontshow) S3method(as_example,tag_donttest) S3method(as_example,tag_dots) S3method(as_example,tag_if) S3method(as_example,tag_ifelse) S3method(as_example,tag_ldots) S3method(as_example,tag_out) S3method(as_example,tag_testonly) S3method(as_html,"#ifdef") S3method(as_html,"#ifndef") S3method(as_html,COMMENT) S3method(as_html,LIST) S3method(as_html,RCODE) S3method(as_html,Rd) S3method(as_html,TEXT) S3method(as_html,USERMACRO) S3method(as_html,VERB) S3method(as_html,character) S3method(as_html,tag) S3method(as_html,tag_R) S3method(as_html,tag_S3method) S3method(as_html,tag_S4method) S3method(as_html,tag_Sexpr) S3method(as_html,tag_acronym) S3method(as_html,tag_bold) S3method(as_html,tag_cite) S3method(as_html,tag_code) S3method(as_html,tag_command) S3method(as_html,tag_cr) S3method(as_html,tag_dQuote) S3method(as_html,tag_deqn) S3method(as_html,tag_describe) S3method(as_html,tag_dfn) S3method(as_html,tag_dots) S3method(as_html,tag_email) S3method(as_html,tag_emph) S3method(as_html,tag_enc) S3method(as_html,tag_enumerate) S3method(as_html,tag_env) S3method(as_html,tag_eqn) S3method(as_html,tag_figure) S3method(as_html,tag_file) S3method(as_html,tag_href) S3method(as_html,tag_if) S3method(as_html,tag_ifelse) S3method(as_html,tag_item) S3method(as_html,tag_itemize) S3method(as_html,tag_kbd) S3method(as_html,tag_ldots) S3method(as_html,tag_link) S3method(as_html,tag_linkS4class) S3method(as_html,tag_method) S3method(as_html,tag_newcommand) S3method(as_html,tag_option) S3method(as_html,tag_out) S3method(as_html,tag_pkg) S3method(as_html,tag_preformatted) S3method(as_html,tag_renewcommand) S3method(as_html,tag_sQuote) S3method(as_html,tag_samp) S3method(as_html,tag_special) S3method(as_html,tag_strong) S3method(as_html,tag_subsection) S3method(as_html,tag_tab) S3method(as_html,tag_tabular) S3method(as_html,tag_url) S3method(as_html,tag_var) S3method(as_html,tag_verb) S3method(pkgdown_print,default) S3method(pkgdown_print,htmlwidget) S3method(print,pkgdown_xml) S3method(print,print_yaml) S3method(print,tag) S3method(usage_code,"NULL") S3method(usage_code,COMMENT) S3method(usage_code,RCODE) S3method(usage_code,Rd) S3method(usage_code,TEXT) S3method(usage_code,VERB) S3method(usage_code,tag) S3method(usage_code,tag_S3method) S3method(usage_code,tag_S4method) S3method(usage_code,tag_dots) S3method(usage_code,tag_ldots) S3method(usage_code,tag_method) S3method(usage_code,tag_special) S3method(usage_code,tag_usage) export(as_pkgdown) export(autolink_html) export(build_article) export(build_articles) export(build_articles_index) export(build_favicon) export(build_favicons) export(build_home) export(build_home_index) export(build_news) export(build_reference) export(build_reference_index) export(build_search) export(build_site) export(build_site_github_pages) export(build_tutorials) export(check_pkgdown) export(clean_site) export(data_template) export(deploy_site_github) export(deploy_to_branch) export(fig_settings) export(in_pkgdown) export(init_site) export(pkgdown_print) export(pkgdown_sitrep) export(preview_page) export(preview_site) export(rd2html) export(render_page) export(template_articles) export(template_navbar) export(template_reference) import(fs) import(rlang) importFrom(magrittr,"%>%") importFrom(memoise,memoise) importFrom(utils,installed.packages) pkgdown/LICENSE0000644000176200001440000000005313370400577012734 0ustar liggesusersYEAR: 2014--2018 COPYRIGHT HOLDER: RStudio pkgdown/README.md0000644000176200001440000000652514343702101013205 0ustar liggesusers # pkgdown CRAN Status R-CMD-check [![Codecov test coverage](https://codecov.io/gh/r-lib/pkgdown/branch/main/graph/badge.svg)](https://app.codecov.io/gh/r-lib/pkgdown?branch=main) pkgdown is designed to make it quick and easy to build a website for your package. You can see pkgdown in action at : this is the output of pkgdown applied to the latest version of pkgdown. Learn more in `vignette("pkgdown")` or `?build_site`. ## Installation
``` r # Install released version from CRAN install.packages("pkgdown") ```
``` r # Install development version from GitHub devtools::install_github("r-lib/pkgdown") ```
## Usage Get started with [usethis](https://usethis.r-lib.org/): ``` r # Run once to configure your package to use pkgdown usethis::use_pkgdown() ``` Then use pkgdown to build your website: ``` r pkgdown::build_site() ``` This generates a `docs/` directory containing a website. Your `README.md` becomes the homepage, documentation in `man/` generates a function reference, and vignettes will be rendered into `articles/`. Read `vignette("pkgdown")` for more details, and to learn how to deploy your site to GitHub pages. ### pkgdown 2.0.0 and Bootstrap 5 pkgdown 2.0.0 includes an upgrade from Bootstrap 3 to Bootstrap 5, which is accompanied by a whole bunch of minor UI improvements. If you’ve heavily customised your site, there’s a small chance that this will break your site, so everyone needs to explicitly opt-in to the upgrade by adding the following to `_pkgdown.yml`: ``` yaml template: bootstrap: 5 ``` Then learn about the many new ways to customise your site in `vignette("customise")`. ## In the wild At last count, pkgdown is used [by over 6,000 packages](https://github.com/search?q=filename%3Apkgdown.yml+path%3A%2F&type=Code). Here are a few examples created by contributors to pkgdown: - [bayesplot](http://mc-stan.org/bayesplot/index.html) ([source](https://github.com/stan-dev/bayesplot/tree/gh-pages)): plotting functions for posterior analysis, model checking, and MCMC diagnostics. - [valr](https://rnabioco.github.io/valr/) ([source](https://github.com/rnabioco/valr)): read and manipulate genome intervals and signals. - [mkin](https://pkgdown.jrwb.de/mkin/) ([source](https://github.com/jranke/mkin)): calculation routines based on the FOCUS Kinetics Report - [NMF](http://renozao.github.io/NMF/master/index.html) ([source](https://github.com/renozao/NMF)): a framework to perform non-negative matrix factorization (NMF). Comparing the source and output of these sites is a great way to learn new pkgdown techniques. ## Code of conduct Please note that this project is released with a [Contributor Code of Conduct](https://pkgdown.r-lib.org/CODE_OF_CONDUCT.html). By participating in this project you agree to abide by its terms. pkgdown/man/0000755000176200001440000000000014343702121012473 5ustar liggesuserspkgdown/man/build_search.Rd0000644000176200001440000000212614247740574015430 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/build-search-docs.R \name{build_search} \alias{build_search} \title{Build search index} \usage{ build_search(pkg = ".", override = list()) } \arguments{ \item{pkg}{Path to package.} \item{override}{An optional named list used to temporarily override values in \verb{_pkgdown.yml}} } \description{ Build a JSON file encompassing all HTML pages, for use by the search script. } \section{YAML config}{ You can exclude some paths from the search index. Below we exclude the changelog from the search index. \if{html}{\out{
}}\preformatted{search: exclude: ['news/index.html'] }\if{html}{\out{
}} } \section{Debugging and local testing}{ Locally (as opposed to on GitHub Pages or Netlify for instance), search won't work if you simply use pkgdown preview of the static files. You can use \code{servr::httw("docs")} instead. If search is not working, run \code{pkgdown::pkgdown_sitrep()} to eliminate common issues such as the absence of URL in the pkgdown configuration file of your package. } pkgdown/man/test-dont.Rd0000644000176200001440000000241014131410667014706 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/test.R \name{test-dont} \alias{test-dont} \title{Test case: don't} \description{ Test case: don't } \examples{ \dontrun{ stop("This is an error!", call. = FALSE) } # Inline \donttest is silently ommitted \donttest{message("Hi!")} # Block \donttest indicated with comments \donttest{ # This is a comment 1 + 3 } # And works even when not at the top level if (TRUE) { \donttest{ 1 + 2 } } answer <- 1 \dontshow{ answer <- 42 } answer # should be 42 # To hide the \dontshow part, for conditional examples \dontshow{if (FALSE) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} answer <- 43 \dontshow{\}) # examplesIf} answer # should be still 42 # But this one runs, and the condition is hidden \dontshow{if (TRUE) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} answer <- 43 \dontshow{\}) # examplesIf} answer } \seealso{ Other tests: \code{\link{index}}, \code{\link{test-crayon}}, \code{\link{test-figures}}, \code{\link{test-links}}, \code{\link{test-lists}}, \code{\link{test-long-lines}}, \code{\link{test-output-styles}}, \code{\link{test-params}}, \code{\link{test-sexpr-title}}, \code{\link{test-verbatim}} } \concept{tests} \keyword{internal} pkgdown/man/test-params.Rd0000644000176200001440000000105614131410667015232 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/test.R \name{test-params} \alias{test-params} \title{Test case: params} \arguments{ \item{...}{ellipsis} } \description{ Test case: params } \seealso{ Other tests: \code{\link{index}}, \code{\link{test-crayon}}, \code{\link{test-dont}}, \code{\link{test-figures}}, \code{\link{test-links}}, \code{\link{test-lists}}, \code{\link{test-long-lines}}, \code{\link{test-output-styles}}, \code{\link{test-sexpr-title}}, \code{\link{test-verbatim}} } \concept{tests} \keyword{internal} pkgdown/man/check_pkgdown.Rd0000644000176200001440000000051714250414767015610 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/check.R \name{check_pkgdown} \alias{check_pkgdown} \title{Check \verb{_pkgdown.yml}} \usage{ check_pkgdown(pkg = ".") } \arguments{ \item{pkg}{Path to package.} } \description{ Check that your \verb{_pkgdown.yml} is valid without building the whole site. } pkgdown/man/deploy_to_branch.Rd0000644000176200001440000000274514167704041016314 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/deploy-site.R \name{deploy_to_branch} \alias{deploy_to_branch} \title{Build and deploy a site locally} \usage{ deploy_to_branch( pkg = ".", commit_message = construct_commit_message(pkg), clean = TRUE, branch = "gh-pages", remote = "origin", github_pages = (branch == "gh-pages"), ..., subdir = NULL ) } \arguments{ \item{pkg}{Path to package.} \item{commit_message}{The commit message to be used for the commit.} \item{clean}{Clean all files from old site.} \item{branch}{The git branch to deploy to} \item{remote}{The git remote to deploy to} \item{github_pages}{Is this a GitHub pages deploy. If \code{TRUE}, adds a \code{CNAME} file for custom domain name support, and a \code{.nojekyll} file to suppress jekyll rendering.} \item{...}{Additional arguments passed to \code{\link[=build_site]{build_site()}}.} \item{subdir}{The sub-directory where the site should be built on the branch. This argument can be used to support a number of site configurations. For example, you could build version-specific documentation by setting \code{subdir = "v1.2.3"}; \code{deploy_to_branch()} will build and deploy the package documentation in the \verb{v.1.2.3/} directory of your site.} } \description{ Assumes that you're in a git clone of the project, and the package is already installed. Use \code{\link[usethis:use_pkgdown]{usethis::use_pkgdown_github_pages()}} to automate this process using GitHub actions. } pkgdown/man/build_favicons.Rd0000644000176200001440000000202013632757251015761 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/build-favicons.R \name{build_favicons} \alias{build_favicons} \alias{build_favicon} \title{Create favicons from package logo} \usage{ build_favicons(pkg = ".", overwrite = FALSE) build_favicon(pkg, overwrite) } \arguments{ \item{pkg}{Path to package.} \item{overwrite}{If \code{TRUE}, re-create favicons from package logo.} } \description{ This function auto-detects the location of your package logo (with the name \code{logo.svg} (recommended format) or \code{logo.png}) and runs it through the \url{https://realfavicongenerator.net} API to build a complete set of favicons with different sizes, as needed for modern web usage. } \details{ You only need to run the function once. The favicon set will be stored in \code{pkgdown/favicon} and copied by \code{\link[=init_site]{init_site()}} to the relevant location when the website is rebuilt. Once complete, you should add \verb{pkgdown/} to \code{.Rbuildignore } to avoid a NOTE during package checking. } pkgdown/man/autolink_html.Rd0000644000176200001440000000144113671767227015661 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/autolink_html.R \name{autolink_html} \alias{autolink_html} \title{Automatically link references and articles in an HTML page} \usage{ autolink_html(input, output = input, local_packages = character()) } \arguments{ \item{input, output}{Input and output paths for HTML file} \item{local_packages}{A named character vector providing relative paths (value) to packages (name) that can be reached with relative links from the target HTML document.} } \description{ Deprecated: please use \link[downlit:downlit_html_path]{downlit::downlit_html_path} instead. } \examples{ \dontrun{ autolink_html("path/to/file.html", local_packages = c( shiny = "shiny", shinydashboard = "shinydashboard" ) ) } } \keyword{internal} pkgdown/man/pkgdown_sitrep.Rd0000644000176200001440000000070114131662734016031 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/sitrep.R \name{pkgdown_sitrep} \alias{pkgdown_sitrep} \title{Report package pkgdown situation} \usage{ pkgdown_sitrep(pkg = ".") } \arguments{ \item{pkg}{Path to package.} } \description{ \code{pkgdown_sitrep()} reports \itemize{ \item If there is an \code{url} field in the pkgdown configuration; \item If that pkgdown website URL is stored in the DESCRIPTION file. } } pkgdown/man/deploy_site_github.Rd0000644000176200001440000000414514151771664016667 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/deploy-site.R \name{deploy_site_github} \alias{deploy_site_github} \title{Deploy a pkgdown site on Travis-CI to Github Pages} \usage{ deploy_site_github( pkg = ".", install = TRUE, tarball = Sys.getenv("PKG_TARBALL", ""), ssh_id = Sys.getenv("id_rsa", ""), commit_message = construct_commit_message(pkg), clean = FALSE, verbose = FALSE, host = "github.com", ..., repo_slug = Sys.getenv("TRAVIS_REPO_SLUG", "") ) } \arguments{ \item{pkg}{Path to package.} \item{install}{Optionally, opt-out of automatic installation. This is necessary if the package you're documenting is a dependency of pkgdown} \item{tarball}{The location of the built package tarball. The default Travis configuration for R packages sets \code{PKG_TARBALL} to this path.} \item{ssh_id}{The private id to use, a base64 encoded content of the private pem file. This should \emph{not} be your personal private key. Instead create a new keypair specifically for deploying the site. The easiest way is to use \code{travis::use_travis_deploy()}.} \item{commit_message}{The commit message to be used for the commit.} \item{clean}{Clean all files from old site.} \item{verbose}{Print verbose output} \item{host}{The GitHub host url.} \item{...}{Additional arguments passed to \code{\link[=build_site]{build_site()}}.} \item{repo_slug}{The \code{user/repo} slug for the repository.} } \description{ \ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#superseded}{\figure{lifecycle-superseded.svg}{options: alt='[Superseded]'}}}{\strong{[Superseded]}} \code{deploy_site_github()} was designed to deploy your site from Travis CI, which we no longer recommend, so this function is deprecated. There are two replacements: \itemize{ \item \code{\link[usethis:use_pkgdown]{usethis::use_pkgdown_github_pages()}} will setup a GitHub action to automatically build and deploy your package website to GitHub pages. \item \code{\link[=deploy_to_branch]{deploy_to_branch()}} can be called locally to build and deploy your website to any desired branch. } } \keyword{internal} pkgdown/man/test-verbatim.Rd0000644000176200001440000000250614247740574015574 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/test.R \name{test-verbatim} \alias{test-verbatim} \title{Test case: preformatted blocks & syntax highlighting} \description{ Manual test cases for various ways of embedding code in sections. All code blocks should have copy and paste button. } \section{Should be highlighted}{ Valid R code in \verb{\preformatted{}}: \if{html}{\out{
}}\preformatted{mean(a + 1) }\if{html}{\out{
}} R code in \code{R} block: \if{html}{\out{
}}\preformatted{mean(a + 1) }\if{html}{\out{
}} R code in \code{r} block: \if{html}{\out{
}}\preformatted{mean(a + 1) }\if{html}{\out{
}} Yaml \if{html}{\out{
}}\preformatted{yaml: [a, 1] }\if{html}{\out{
}} } \section{Shouldn't be highlighted}{ Non-R code in \verb{\preformatted{}} \if{html}{\out{
}}\preformatted{yaml: [a, b, c] }\if{html}{\out{
}} } \seealso{ Other tests: \code{\link{index}}, \code{\link{test-crayon}}, \code{\link{test-dont}}, \code{\link{test-figures}}, \code{\link{test-links}}, \code{\link{test-lists}}, \code{\link{test-long-lines}}, \code{\link{test-output-styles}}, \code{\link{test-params}}, \code{\link{test-sexpr-title}} } \concept{tests} \keyword{internal} pkgdown/man/test-sexpr-title.Rd0000644000176200001440000000112414131410667016223 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/test.R \name{test-sexpr-title} \alias{test-sexpr-title} \title{Test case: \Sexpr[stage=render,results=rd]{"sexpr"}} \description{ Test case: \Sexpr[stage=render,results=rd]{"sexpr"} } \seealso{ Other tests: \code{\link{index}}, \code{\link{test-crayon}}, \code{\link{test-dont}}, \code{\link{test-figures}}, \code{\link{test-links}}, \code{\link{test-lists}}, \code{\link{test-long-lines}}, \code{\link{test-output-styles}}, \code{\link{test-params}}, \code{\link{test-verbatim}} } \concept{tests} \keyword{internal} pkgdown/man/build_site.Rd0000644000176200001440000004526614343702101015120 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/build.R \name{build_site} \alias{build_site} \title{Build a complete pkgdown website} \usage{ build_site( pkg = ".", examples = TRUE, run_dont_run = FALSE, seed = 1014, lazy = FALSE, override = list(), preview = NA, devel = FALSE, new_process = !devel, install = !devel, document = "DEPRECATED" ) } \arguments{ \item{pkg}{Path to package.} \item{examples}{Run examples?} \item{run_dont_run}{Run examples that are surrounded in \\dontrun?} \item{seed}{Seed used to initialize so that random examples are reproducible.} \item{lazy}{If \code{TRUE}, will only rebuild articles and reference pages if the source is newer than the destination.} \item{override}{An optional named list used to temporarily override values in \verb{_pkgdown.yml}} \item{preview}{If \code{TRUE}, or \code{is.na(preview) && interactive()}, will preview freshly generated section in browser.} \item{devel}{Use development or deployment process? If \code{TRUE}, uses lighter-weight process suitable for rapid iteration; it will run examples and vignettes in the current process, and will load code with \code{pkgload::load_all()}. If \code{FALSE}, will first install the package to a temporary library, and will run all examples and vignettes in a new process. \code{build_site()} defaults to \code{devel = FALSE} so that you get high fidelity outputs when you building the complete site; \code{build_reference()}, \code{build_home()} and friends default to \code{devel = TRUE} so that you can rapidly iterate during development.} \item{new_process}{If \code{TRUE}, will run \code{build_site()} in a separate process. This enhances reproducibility by ensuring nothing that you have loaded in the current process affects the build process.} \item{install}{If \code{TRUE}, will install the package in a temporary library so it is available for vignettes.} \item{document}{\strong{Deprecated} Use \code{devel} instead.} } \description{ \code{build_site()} is a convenient wrapper around six functions: \itemize{ \item \code{\link[=init_site]{init_site()}} \item \code{\link[=build_home]{build_home()}} \item \code{\link[=build_reference]{build_reference()}} \item \code{\link[=build_articles]{build_articles()}} \item \code{\link[=build_tutorials]{build_tutorials()}} \item \code{\link[=build_news]{build_news()}} } See the documentation for the each function to learn how to control that aspect of the site. This page documents options that affect the whole site. } \section{General config}{ \itemize{ \item \code{destination} controls where the site will be generated, defaulting to \verb{docs/}. Paths are relative to the package root. \item \code{url} is optional, but strongly recommended. \if{html}{\out{
}}\preformatted{url: https://pkgdown.r-lib.org }\if{html}{\out{
}} It specifies where the site will be published and is used to allow other pkgdown sites to link to your site when needed (\code{vignette("linking")}), generate a \code{sitemap.xml}, automatically generate a \code{CNAME} when \link[=deploy_site_github]{deploying to github}, generate the metadata needed rich social "media cards" (\code{vignette("metadata")}), and more. \item \code{title} overrides the default site title, which is the package name. It's used in the page title and default navbar. } } \section{Development mode}{ The \code{development} field allows you to generate different sites for the development and released versions of your package. To use it, you first need to set the development \code{mode}: \if{html}{\out{
}}\preformatted{development: mode: auto }\if{html}{\out{
}} \subsection{Setting development mode}{ The development \code{mode} of a site controls where the site is built, the colour of the package version in the navbar, the version tooltip, and whether or not the site is indexed by search engines. There are four possible modes: \itemize{ \item \strong{automatic} (\code{mode: auto}): automatically determines the mode based on the version number: \itemize{ \item \verb{0.0.0.9000} (\verb{0.0.0.*}): unreleased. \item four version components: development. \item everything else -> release. } \item \strong{release} (\code{mode: release}), the default. Site is written to \verb{docs/}. Version in navbar gets the default colouring. Development badges are not shown in the sidebar (see \code{?build_home}). \item \strong{development} (\code{mode: devel}). Site is written to \verb{docs/dev/}. The navbar version gets a "danger" class and a tooltip stating these are docs for an in-development version of the package. The \code{noindex} meta tag is used to ensure that these packages are not indexed by search engines. Development badges are shown in the sidebar (see \code{?build_home}). \item \strong{unreleased} (\code{mode: unreleased}). Site is written to \verb{docs/}. Version in navbar gets the "danger" class, and a message indicating the package is not yet on CRAN. Development badges are shown in the sidebar (see \code{?build_home}). } You can override the mode specified in the \verb{_pkgdown.yml} by setting by setting \code{PKGDOWN_DEV_MODE} to \code{devel} or \code{release}. } \subsection{Selective HTML}{ You can selectively show HTML only on the devel or release site by adding class \code{pkgdown-devel} or \code{pkgdown-release}. This is most easily accessed from \code{.Rmd} files where you can use pandoc's \verb{
} syntax to control where a block of markdown will display. For example, you can use the following markdown in your README to only show GitHub install instructions on the development version of your site: \if{html}{\out{
}}\preformatted{::: \{.pkgdown-devel\} You can install the development version of pkgdown from GitHub with: `remotes::install_github("r-lib/pkgdown")` ::: }\if{html}{\out{
}} You can use a similar technique to control where badges are displayed. This markdown show the CRAN status badge on the site for the released package and the GitHub check status for the development package: \if{html}{\out{
}}\preformatted{[![CRAN Status](https://www.r-pkg.org/badges/version/pkgdown)] (https://cran.r-project.org/package=pkgdown)\{.pkgdown-release\} [![R-CMD-check](https://github.com/r-lib/pkgdown/workflows/R-CMD-check/badge.svg)] (https://github.com/r-lib/pkgdown/actions)\{.pkgdown-devel\} }\if{html}{\out{
}} } \subsection{Other options}{ There are three other options that you can control: \if{html}{\out{
}}\preformatted{development: destination: dev version_label: danger version_tooltip: "Custom message here" }\if{html}{\out{
}} \code{destination} allows you to override the default subdirectory used for the development site; it defaults to \verb{dev/}. \code{version_label} allows you to override the style used for development (and unreleased) versions of the package. It defaults to "danger", but you can set to "default", "info", or "warning" instead. (The precise colours are determined by your bootstrap theme, but become progressively more eye catching as you go from default to danger). Finally, you can choose to override the default tooltip with \code{version_tooltip}. } } \section{Navigation bar}{ You can customise the navigation bar that appears at the top of the page with the \code{navbar} field. It's made up of two pieces: \code{structure}, which defines the overall layout, and \code{components}, which defines what each piece looks like. This organisation makes it easy to mix and match pkgdown defaults with your own customisations. This is the default structure: \if{html}{\out{
}}\preformatted{navbar: structure: left: [intro, reference, articles, tutorials, news] right: [search, github] }\if{html}{\out{
}} It makes use of the the six built-in components: \itemize{ \item \code{intro}: "Get Started", which links to a vignette with the same name as the package. \item \code{reference}, if there are any \code{.Rd} files. \item \code{articles}, if there are any vignettes or articles. \item \code{tutorials}, if there any tutorials. \item \code{news}, if \code{NEWS.md} exists. \item \code{search}, the search box (see \code{vignette("search")} for more details). \item \code{github}, a link to the source repository (with an icon), if it can be automatically determined from the \code{DESCRIPTION}. } You can use the \code{structure} field to reorganise the navbar without changing the default contents: \if{html}{\out{
}}\preformatted{navbar: structure: left: [search] right: [reference, articles] }\if{html}{\out{
}} You can use \code{components} to override the default content. For example, this yaml provides a custom articles menu: \if{html}{\out{
}}\preformatted{navbar: components: articles: text: Articles menu: - text: Category A - text: Title A1 href: articles/a1.html - text: Title A2 href: articles/a2.html - text: ------- - text: "Category B" - text: Article B1 href: articles/b1.html }\if{html}{\out{
}} Components uses the same syntax as \href{https://bookdown.org/yihui/rmarkdown/rmarkdown-site.html#site-navigation}{RMarkdown menus}. The elements of \code{menu} can be: \itemize{ \item A link (\code{text} + \code{href}) \item A heading (just \code{text}) \item A separator (\verb{text: ——–}) } Instead of text, you can also use the name of an \code{icon}s from \href{https://fontawesome.com/icons?d=gallery}{fontawesome}. You should also provide a textual description in the \code{aria-label} field for screenreader users. To add a new component to the navbar, you need to modify both \code{structure} and \code{components}. For example, the following yaml adds a new "twitter" component that appears to the left of the github icon. \if{html}{\out{
}}\preformatted{navbar: structure: right: [twitter, github] components: twitter: icon: fa-twitter href: http://twitter.com/hadleywickham aria-label: Twitter }\if{html}{\out{
}} Finally, you can add arbitrary HTML to three locations in the navbar: \if{html}{\out{
}}\preformatted{template: includes: before_title: after_navbar: }\if{html}{\out{
}} These includes will appear on all screen sizes, and will not be collapsed into the the navbar drop down. You can also customise the colour scheme of the navbar by using the \code{type} and \code{bg} parameters. See \code{vignette("customise")} for more details. } \section{Footer}{ You can customise the footer with the \code{footer} field. It's made up of two pieces: \code{structure}, which defines the overall layout, and \code{components}, which defines what each piece looks like. This organisation makes it easy to mix and match the pkgdown defaults with your own customisations. This is the default structure: \if{html}{\out{
}}\preformatted{footer: structure: left: developed_by right: built_with }\if{html}{\out{
}} Which uses two of the three built-in components: \itemize{ \item \code{developed_by}, a sentence describing the main authors of the package. (See \code{?build_home} if you want to tweak \emph{which} authors appear in the footer.) \item \code{built_with}, a sentence advertising pkgdown. \item \code{package}, the name of the package. } You can override these defaults with the \code{footer} field. The example below puts the authors' information on the right along with a legal disclaimer, and puts the pkgdown link on the left. \if{html}{\out{
}}\preformatted{footer: structure: left: pkgdown right: [authors, legal] components: legal: Provided without **any warranty**. }\if{html}{\out{
}} Each side is pasted into a single string (separated by \code{" "}) and then converted from markdown to HTML. } \section{Search}{ The \code{search} field controls the built-in search. See \code{vignette("search")} for details. } \section{Template}{ The \code{template} field is mostly used to control the appearance of the site. See \code{vignette("customise")} for details. There are two other \code{template} fields that control other aspects of the site: \itemize{ \item \code{noindex: true} will suppress indexing of your pages by search engines: \if{html}{\out{
}}\preformatted{template: params: noindex: true }\if{html}{\out{
}} \item \code{google_site_verification} allows you to verify your site with google: \if{html}{\out{
}}\preformatted{template: params: google_site_verification: _nn6ile-a6x6lctOW }\if{html}{\out{
}} \item \code{trailing_slash_redirect: true} will automatically redirect \code{your-package-url.com} to \verb{your-package-url.com/}, using a JS script added to the \verb{} of the home page. This is useful in certain redirect scenarios. \if{html}{\out{
}}\preformatted{template: trailing_slash_redirect: true }\if{html}{\out{
}} } } \section{Analytics}{ To capture usage of your site with a web analytics platform, you can make use of the \code{includes} field to add the HTML supplied to you by the platform. Typically these are either placed \code{after_body} or \code{in_header}. I include a few examples below, but I highly recommend getting the recommended HTML directly from the platform. \itemize{ \item \href{https://www.goatcounter.com}{GoatCounter}: \if{html}{\out{
}}\preformatted{template: includes: after_body: > }\if{html}{\out{
}} \item \href{https://analytics.google.com/analytics/web/}{Google analytics}: \if{html}{\out{
}}\preformatted{template: includes: in_header: | }\if{html}{\out{
}} \item \href{https://plausible.io}{plausible.io}: \if{html}{\out{
}}\preformatted{templates: includes: in_header: | }\if{html}{\out{
}} } } \section{Source repository}{ Use the \code{repo} field to override pkgdown's automatically discovery of your source repository. This is used in the navbar, on the homepage, in articles and reference topics, and in the changelog (to link to issue numbers and user names). pkgdown can automatically figure out the necessary URLs if you link to a GitHub or GitLab repo in your \code{BugReports} or \code{URL} field. Otherwise, you can supply your own in the \code{repo} field: \if{html}{\out{
}}\preformatted{repo: url: home: https://github.com/r-lib/pkgdown/ source: https://github.com/r-lib/pkgdown/blob/HEAD/ issue: https://github.com/r-lib/pkgdown/issues/ user: https://github.com/ }\if{html}{\out{
}} \itemize{ \item \code{home}: path to package home on source code repository. \item \verb{source:}: path to source of individual file in default branch. \item \code{issue}: path to individual issue. \item \code{user}: path to user. } The varying components (e.g. path, issue number, user name) are pasted on the end of these URLs so they should have trailing \code{/}s. pkgdown can automatically link to Jira issues as well if specify both a custom \code{issue} URL as well Jira project names to auto-link in \code{jira_projects}. You can specify as many projects as you would like: \if{html}{\out{
}}\preformatted{repo: jira_projects: [this_project, another_project] url: issue: https://jira.organisation.com/jira/browse/ }\if{html}{\out{
}} pkgdown defaults to using the "HEAD" branch for source file URLs. This can be configured to use a specific branch when linking to source files by specifying a branch name: \if{html}{\out{
}}\preformatted{repo: branch: devel }\if{html}{\out{
}} } \section{Deployment (\code{deploy})}{ There is a single \code{deploy} field \itemize{ \item \code{install_metadata} allows you to install package index metadata into the package itself. Normally this metadata is made available on the published site; installing it into your package means that it's available for autolinking even if your website is not reachable at build time (e.g. because behind a firewall or requires auth). \if{html}{\out{
}}\preformatted{deploy: install_metadata: true }\if{html}{\out{
}} } } \section{Redirects}{ If you change the structure of your documentation (by renaming vignettes or help topics) you can setup redirects from the old content to the new content. One or several now-absent pages can be redirected to a new page (or to a new section of a new page). This works by creating a html page that performs a "meta refresh", which isn't the best way of doing a redirect but works everywhere that you might deploy your site. The syntax is the following, with old paths on the left, and new paths or URLs on the right. \if{html}{\out{
}}\preformatted{redirects: - ["articles/old-vignette-name.html", "articles/new-vignette-name.html"] - ["articles/another-old-vignette-name.html", "articles/new-vignette-name.html"] - ["articles/yet-another-old-vignette-name.html", "https://pkgdown.r-lib.org/dev"] }\if{html}{\out{
}} If for some reason you choose to redirect an existing page make sure to exclude it from the search index, see \code{?build_search}. } \section{Options}{ Users with limited internet connectivity can disable CRAN checks by setting \code{options(pkgdown.internet = FALSE)}. This will also disable some features from pkgdown that requires an internet connectivity. However, if it is used to build docs for a package that requires internet connectivity in examples or vignettes, this connection is required as this option won't apply on them. Users can set a timeout for \code{build_site(new_process = TRUE)} with \code{options(pkgdown.timeout = Inf)}, which is useful to prevent stalled builds from hanging in cron jobs. } \examples{ \dontrun{ build_site() build_site(override = list(destination = tempdir())) } } pkgdown/man/build_news.Rd0000644000176200001440000000517114247740574015142 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/build-news.R \name{build_news} \alias{build_news} \title{Build news section} \usage{ build_news(pkg = ".", override = list(), preview = NA) } \arguments{ \item{pkg}{Path to package.} \item{override}{An optional named list used to temporarily override values in \verb{_pkgdown.yml}} \item{preview}{If \code{TRUE}, or \code{is.na(preview) && interactive()}, will preview freshly generated section in browser.} } \description{ A \code{NEWS.md} will be broken up into versions using level one (\verb{#}) or level two headings (\verb{##}) that (partially) match one of the following forms (ignoring case): \itemize{ \item \verb{\{package name\} 1.3.0} \item \verb{\{package name\} v1.3.0} \item \verb{Version 1.3.0} \item \verb{Changes in 1.3.0} \item \verb{Changes in v1.3.0} } } \details{ A \href{https://style.tidyverse.org/news.html}{common structure} for news files is to use a top level heading for each release, and use a second level heading to break up individual bullets into sections. \if{html}{\out{
}}\preformatted{# foofy 1.0.0 ## Major changes * Can now work with all grooveable grobbles! ## Minor improvements and bug fixes * Printing scrobbles no longer errors (@githubusername, #100) * Wibbles are now 55\% less jibbly (#200) }\if{html}{\out{
}} Issues and contributors will be automatically linked to the corresponding pages on GitHub if the GitHub repo can be discovered from the \code{DESCRIPTION} (typically from a \code{URL} entry containing \code{github.com}) If a version is available on CRAN, the release date will automatically be added to the heading (see below for how to suppress); if not available on CRAN, "Unreleased" will be added. } \section{YAML config}{ To automatically link to release announcements, include a \code{releases} section. \if{html}{\out{
}}\preformatted{news: releases: - text: "usethis 1.3.0" href: https://www.tidyverse.org/articles/2018/02/usethis-1-3-0/ - text: "usethis 1.0.0 (and 1.1.0)" href: https://www.tidyverse.org/articles/2017/11/usethis-1.0.0/ }\if{html}{\out{
}} Control whether news is present on one page or multiple pages with the \code{one_page} field. The default is \code{true}. \if{html}{\out{
}}\preformatted{news: one_page: false }\if{html}{\out{
}} Suppress the default addition of CRAN release dates with: \if{html}{\out{
}}\preformatted{news: cran_dates: false }\if{html}{\out{
}} } \seealso{ \href{https://style.tidyverse.org/news.html}{Tidyverse style for News} } pkgdown/man/render_page.Rd0000644000176200001440000000232314247740574015256 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/render.R \name{render_page} \alias{render_page} \alias{data_template} \title{Render page with template} \usage{ render_page(pkg = ".", name, data, path, depth = NULL, quiet = FALSE) data_template(pkg = ".", depth = 0L) } \arguments{ \item{pkg}{Path to package to document.} \item{name}{Name of the template (e.g. "home", "vignette", "news")} \item{data}{Data for the template. This is automatically supplemented with three lists: \itemize{ \item \code{site}: \code{title} and path to \code{root}. \item \code{yaml}: the \code{template} key from \verb{_pkgdown.yml}. \item \code{package}: package metadata including \code{name} and\code{version}. } See the full contents by running \code{\link[=data_template]{data_template()}}.} \item{path}{Location to create file; relative to destination directory.} \item{depth}{Depth of path relative to base directory.} \item{quiet}{If \code{quiet}, will suppress output messages} } \description{ Each page is composed of four templates: "head", "header", "content", and "footer". Each of these templates is rendered using the \code{data}, and then assembled into an overall page using the "layout" template. } pkgdown/man/templates.Rd0000644000176200001440000000130213632757251014772 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/template.R \name{template_navbar} \alias{template_navbar} \alias{template_reference} \alias{template_articles} \title{Generate YAML templates} \usage{ template_navbar(path = ".") template_reference(path = ".") template_articles(path = ".") } \arguments{ \item{path}{Path to package root} } \description{ Use these function to generate the default YAML that pkgdown uses for the different parts of \verb{_pkgdown.yml}. This are useful starting points if you want to customise your site. } \examples{ \dontrun{ pkgdown::template_navbar() } \dontrun{ pkgdown::template_reference() } \dontrun{ pkgdown::template_articles() } } pkgdown/man/test-long-lines.Rd0000644000176200001440000000135214140057026016011 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/test.R \name{test-long-lines} \alias{test-long-lines} \title{Test case: long-lines} \description{ The example results should have the copy button correctly placed when scrollings } \examples{ pkgdown:::ruler() cat(rep("x ", 100), sep = "") cat(rep("xy", 100), sep = "") cat(rep("x ", 100), sep = "") cat(rep("xy", 100), sep = "") } \seealso{ Other tests: \code{\link{index}}, \code{\link{test-crayon}}, \code{\link{test-dont}}, \code{\link{test-figures}}, \code{\link{test-links}}, \code{\link{test-lists}}, \code{\link{test-output-styles}}, \code{\link{test-params}}, \code{\link{test-sexpr-title}}, \code{\link{test-verbatim}} } \concept{tests} \keyword{internal} pkgdown/man/fig_settings.Rd0000644000176200001440000000152214264307402015454 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/figure.R \name{fig_settings} \alias{fig_settings} \title{Get current settings for figures} \usage{ fig_settings() } \value{ A list containing the entries from the \code{figures} field in \verb{_pkgdown.yml} (see \code{\link[=build_reference]{build_reference()}}), with default values added. Computed \code{width} and \code{height} values (in pixels) are also included. } \description{ You will generally not need to use this function unless you are handling custom plot output. Packages needing custom parameters should ask users to place them within the \code{other.parameters} entry under the package name, e.g. \if{html}{\out{
}}\preformatted{figures: other.parameters: rgl: fig.asp: 1 }\if{html}{\out{
}} } \keyword{internal} pkgdown/man/test-crayon.Rd0000644000176200001440000000127414264337707015256 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/test.R \name{test-crayon} \alias{test-crayon} \title{Test case: crayon} \description{ Test case: crayon } \examples{ cat(cli::col_red("This is red"), "\n") cat(cli::col_blue("This is blue"), "\n") message(cli::col_green("This is green")) warning(cli::style_bold("This is bold")) } \seealso{ Other tests: \code{\link{index}}, \code{\link{test-dont}}, \code{\link{test-figures}}, \code{\link{test-links}}, \code{\link{test-lists}}, \code{\link{test-long-lines}}, \code{\link{test-output-styles}}, \code{\link{test-params}}, \code{\link{test-sexpr-title}}, \code{\link{test-verbatim}} } \concept{tests} \keyword{internal} pkgdown/man/test-links.Rd0000644000176200001440000000131614343702101015056 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/test.R \name{test-links} \alias{test-links} \title{Test case: links} \description{ \if{html}{\out{
}}\preformatted{magrittr::subtract(10, 1) #> [1] 9 }\if{html}{\out{
}} } \examples{ magrittr::subtract(10, 1) library(magrittr, warn.conflicts = FALSE) subtract(10, 1) } \seealso{ Other tests: \code{\link{index}}, \code{\link{test-crayon}}, \code{\link{test-dont}}, \code{\link{test-figures}}, \code{\link{test-lists}}, \code{\link{test-long-lines}}, \code{\link{test-output-styles}}, \code{\link{test-params}}, \code{\link{test-sexpr-title}}, \code{\link{test-verbatim}} } \concept{tests} \keyword{internal} pkgdown/man/build_articles.Rd0000644000176200001440000002071514264307401015760 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/build-articles.R \name{build_articles} \alias{build_articles} \alias{build_article} \alias{build_articles_index} \title{Build articles section} \usage{ build_articles( pkg = ".", quiet = TRUE, lazy = TRUE, override = list(), preview = NA ) build_article(name, pkg = ".", data = list(), lazy = FALSE, quiet = TRUE) build_articles_index(pkg = ".") } \arguments{ \item{pkg}{Path to package.} \item{quiet}{Set to \code{FALSE} to display output of knitr and pandoc. This is useful when debugging.} \item{lazy}{If \code{TRUE}, will only re-build article if input file has been modified more recently than the output file.} \item{override}{An optional named list used to temporarily override values in \verb{_pkgdown.yml}} \item{preview}{If \code{TRUE}, or \code{is.na(preview) && interactive()}, will preview freshly generated section in browser.} \item{name}{Name of article to render. This should be either a path relative to \verb{vignettes/} without extension, or \code{index} or \code{README}.} \item{data}{Additional data to pass on to template.} } \description{ \code{build_articles()} renders each R Markdown file underneath \verb{vignettes/} and saves it to \verb{articles/}. There are two exceptions: \itemize{ \item Files that start with \verb{_} (e.g., \verb{_index.Rmd}) are ignored, enabling the use of child documents in \href{https://bookdown.org/yihui/bookdown/}{bookdown} \item Files in \code{vignettes/tutorials} are handled by \code{\link[=build_tutorials]{build_tutorials()}} } Vignettes are rendered using a special document format that reconciles \code{\link[rmarkdown:html_document]{rmarkdown::html_document()}} with the pkgdown template. This means articles behave slightly differently to vignettes, particularly with respect to external files, and custom output formats. See below for more details. Note that when you run \code{build_articles()} directly (outside of \code{\link[=build_site]{build_site()}}) vignettes will use the currently installed version of the package, not the current source version. This makes iteration quicker when you are primarily working on the text of an article. } \section{Index and navbar}{ You can control the articles index and navbar with a \code{articles} field in your \verb{_pkgdown.yml}. If you use it, pkgdown will check that all articles are included, and will error if you have missed any. The \code{articles} field defines a list of sections, each of which can contain four fields: \itemize{ \item \code{title} (required): title of section, which appears as a heading on the articles index. \item \code{desc} (optional): An optional markdown description displayed underneath the section title. \item \code{navbar} (optional): A couple of words used to label this section in the navbar. If omitted, this section of vignettes will not appear in the navbar. \item \code{contents} (required): a list of article names to include in the section. This can either be names of individual vignettes or a call to \code{starts_with()}. The name of a vignette includes its path under \code{vignettes} without extension so that the name of the vignette found at \code{vignettes/pizza/slice.Rmd} is \code{pizza/slice}. } The title and description of individual vignettes displayed on the index comes from \code{title} and \code{description} fields of the YAML header in the Rmds. For example, this yaml might be used for some version of dplyr: \if{html}{\out{
}}\preformatted{articles: - title: Main verbs navbar: ~ contents: - one-table - two-table - rowwise - colwise - title: Developer desc: Vignettes aimed at package developers contents: - programming - packages }\if{html}{\out{
}} Note the use of the \code{navbar} fields. \verb{navbar: ~} means that the "Main verbs" will appear in the navbar without a heading; the absence of the \code{navbar} field in the developer vignettes means that they will only be accessible via the articles index. The navbar will include a link to the articles index if one or more vignettes are not available through the navbar. If some vignettes appear in the navbar drop-down list and others do not, the list will automatically include a "More ..." link at the bottom; if no vignettes appear in the the navbar, it will link directly to the articles index instead of providing a drop-down. } \section{Get started}{ Note that a vignette with the same name as the package (e.g., \code{vignettes/pkgdown.Rmd} or \code{vignettes/articles/pkgdown.Rmd}) automatically becomes a top-level "Get started" link, and will not appear in the articles drop-down. (If your package name includes a \code{.}, e.g. \code{pack.down}, use a \code{-} in the vignette name, e.g. \code{pack-down.Rmd}.) } \section{External files}{ pkgdown differs from base R in its handling of external files. When building vignettes, R assumes that vignettes are self-contained (a reasonable assumption when most vignettes were PDFs) and only copies files explicitly listed in \code{.install_extras}. pkgdown takes a different approach based on \code{\link[rmarkdown:find_external_resources]{rmarkdown::find_external_resources()}}, and it will also copy any images that you link to. If for some reason the automatic detection doesn't work, you will need to add a \code{resource_files} field to the yaml metadata, e.g.: \if{html}{\out{
}}\preformatted{--- title: My Document resource_files: - data/mydata.csv - images/figure.png --- }\if{html}{\out{
}} Note that you can not use the \code{fig.path} to change the output directory of generated figures as its default value is a strong assumption of rmarkdown. } \section{Embedding Shiny apps}{ If you would like to embed a Shiny app into an article, the app will have to be hosted independently, (e.g. \url{https://www.shinyapps.io}). Then, you can embed the app into your article using an \verb{
pkgdown/inst/BS3/templates/layout.html0000644000176200001440000000074214137761366017511 0ustar liggesusers {{{ head }}} {{{ in-header }}} {{{ before-body }}}
{{{ navbar }}} {{{ header }}}
{{{ content }}}
{{{ footer }}}
{{{ docsearch }}} {{{ after-body }}} pkgdown/inst/BS3/templates/layout-redirect.html0000644000176200001440000000026514150723564021301 0ustar liggesusers pkgdown/inst/BS3/templates/after-body.html0000644000176200001440000000005314136064064020211 0ustar liggesusers{{#includes}}{{{after_body}}}{{/includes}} pkgdown/inst/BS3/templates/content-news-index.html0000644000176200001440000000040214134110164021673 0ustar liggesusers
pkgdown/inst/BS3/templates/content-tutorial-index.html0000644000176200001440000000036414134110164022571 0ustar liggesusers
pkgdown/inst/BS3/templates/docsearch.html0000644000176200001440000000115214134110164020100 0ustar liggesusers{{#yaml}}{{#docsearch}} {{/docsearch}}{{/yaml}} pkgdown/inst/BS3/templates/head.html0000644000176200001440000001414014134110164017047 0ustar liggesusers {{{pagetitle}}} • {{#site}}{{title}}{{/site}} {{#has_favicons}} {{/has_favicons}} {{#yaml}} {{#bootswatch}}{{/bootswatch}} {{^bootswatch}}{{/bootswatch}} {{/yaml}} {{#yaml}}{{#docsearch}} {{/docsearch}}{{/yaml}} {{#extra}} {{#css}}{{/css}} {{#js}}{{/js}} {{/extra}} {{#opengraph}} {{#description}} {{/description}} {{#image}} {{#alt}} {{/alt}} {{/image}} {{#twitter}} {{#card}} {{/card}} {{^card}} {{/card}} {{#creator}} {{/creator}} {{#site}} {{/site}} {{/twitter}} {{/opengraph}} {{#yaml}}{{#noindex}}{{/noindex}}{{/yaml}} {{#development}}{{#in_dev}}{{/in_dev}}{{/development}} {{#yaml}}{{#google_site_verification}} {{/google_site_verification}}{{/yaml}} {{#yaml}}{{#ganalytics}} {{/ganalytics}}{{/yaml}} {{#has_trailingslash}} {{/has_trailingslash}} {{#has_deps}} {{{dependencies}}} {{/has_deps}} pkgdown/inst/BS3/assets/0000755000176200001440000000000014134110164014564 5ustar liggesuserspkgdown/inst/BS3/assets/link.svg0000644000176200001440000000145214134110164016244 0ustar liggesusers pkgdown/inst/BS3/assets/docsearch.css0000644000176200001440000002675614134110164017251 0ustar liggesusers/* Docsearch -------------------------------------------------------------- */ /* Source: https://github.com/algolia/docsearch/ License: MIT */ .algolia-autocomplete { display: block; -webkit-box-flex: 1; -ms-flex: 1; flex: 1 } .algolia-autocomplete .ds-dropdown-menu { width: 100%; min-width: none; max-width: none; padding: .75rem 0; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, .1); box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .175); } @media (min-width:768px) { .algolia-autocomplete .ds-dropdown-menu { width: 175% } } .algolia-autocomplete .ds-dropdown-menu::before { display: none } .algolia-autocomplete .ds-dropdown-menu [class^=ds-dataset-] { padding: 0; background-color: rgb(255,255,255); border: 0; max-height: 80vh; } .algolia-autocomplete .ds-dropdown-menu .ds-suggestions { margin-top: 0 } .algolia-autocomplete .algolia-docsearch-suggestion { padding: 0; overflow: visible } .algolia-autocomplete .algolia-docsearch-suggestion--category-header { padding: .125rem 1rem; margin-top: 0; font-size: 1.3em; font-weight: 500; color: #00008B; border-bottom: 0 } .algolia-autocomplete .algolia-docsearch-suggestion--wrapper { float: none; padding-top: 0 } .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column { float: none; width: auto; padding: 0; text-align: left } .algolia-autocomplete .algolia-docsearch-suggestion--content { float: none; width: auto; padding: 0 } .algolia-autocomplete .algolia-docsearch-suggestion--content::before { display: none } .algolia-autocomplete .ds-suggestion:not(:first-child) .algolia-docsearch-suggestion--category-header { padding-top: .75rem; margin-top: .75rem; border-top: 1px solid rgba(0, 0, 0, .1) } .algolia-autocomplete .ds-suggestion .algolia-docsearch-suggestion--subcategory-column { display: block; padding: .1rem 1rem; margin-bottom: 0.1; font-size: 1.0em; font-weight: 400 /* display: none */ } .algolia-autocomplete .algolia-docsearch-suggestion--title { display: block; padding: .25rem 1rem; margin-bottom: 0; font-size: 0.9em; font-weight: 400 } .algolia-autocomplete .algolia-docsearch-suggestion--text { padding: 0 1rem .5rem; margin-top: -.25rem; font-size: 0.8em; font-weight: 400; line-height: 1.25 } .algolia-autocomplete .algolia-docsearch-footer { width: 110px; height: 20px; z-index: 3; margin-top: 10.66667px; float: right; font-size: 0; line-height: 0; } .algolia-autocomplete .algolia-docsearch-footer--logo { background-image: url("data:image/svg+xml;utf8,"); background-repeat: no-repeat; background-position: 50%; background-size: 100%; overflow: hidden; text-indent: -9000px; width: 100%; height: 100%; display: block; transform: translate(-8px); } .algolia-autocomplete .algolia-docsearch-suggestion--highlight { color: #FF8C00; background: rgba(232, 189, 54, 0.1) } .algolia-autocomplete .algolia-docsearch-suggestion--text .algolia-docsearch-suggestion--highlight { box-shadow: inset 0 -2px 0 0 rgba(105, 105, 105, .5) } .algolia-autocomplete .ds-suggestion.ds-cursor .algolia-docsearch-suggestion--content { background-color: rgba(192, 192, 192, .15) } pkgdown/inst/BS3/assets/docsearch.js0000644000176200001440000000374214134110164017063 0ustar liggesusers$(function() { // register a handler to move the focus to the search bar // upon pressing shift + "/" (i.e. "?") $(document).on('keydown', function(e) { if (e.shiftKey && e.keyCode == 191) { e.preventDefault(); $("#search-input").focus(); } }); $(document).ready(function() { // do keyword highlighting /* modified from https://jsfiddle.net/julmot/bL6bb5oo/ */ var mark = function() { var referrer = document.URL ; var paramKey = "q" ; if (referrer.indexOf("?") !== -1) { var qs = referrer.substr(referrer.indexOf('?') + 1); var qs_noanchor = qs.split('#')[0]; var qsa = qs_noanchor.split('&'); var keyword = ""; for (var i = 0; i < qsa.length; i++) { var currentParam = qsa[i].split('='); if (currentParam.length !== 2) { continue; } if (currentParam[0] == paramKey) { keyword = decodeURIComponent(currentParam[1].replace(/\+/g, "%20")); } } if (keyword !== "") { $(".contents").unmark({ done: function() { $(".contents").mark(keyword); } }); } } }; mark(); }); }); /* Search term highlighting ------------------------------*/ function matchedWords(hit) { var words = []; var hierarchy = hit._highlightResult.hierarchy; // loop to fetch from lvl0, lvl1, etc. for (var idx in hierarchy) { words = words.concat(hierarchy[idx].matchedWords); } var content = hit._highlightResult.content; if (content) { words = words.concat(content.matchedWords); } // return unique words var words_uniq = [...new Set(words)]; return words_uniq; } function updateHitURL(hit) { var words = matchedWords(hit); var url = ""; if (hit.anchor) { url = hit.url_without_anchor + '?q=' + escape(words.join(" ")) + '#' + hit.anchor; } else { url = hit.url + '?q=' + escape(words.join(" ")); } return url; } pkgdown/inst/BS3/assets/pkgdown.js0000644000176200001440000000626014134110164016577 0ustar liggesusers/* http://gregfranko.com/blog/jquery-best-practices/ */ (function($) { $(function() { $('.navbar-fixed-top').headroom(); $('body').css('padding-top', $('.navbar').height() + 10); $(window).resize(function(){ $('body').css('padding-top', $('.navbar').height() + 10); }); $('[data-toggle="tooltip"]').tooltip(); var cur_path = paths(location.pathname); var links = $("#navbar ul li a"); var max_length = -1; var pos = -1; for (var i = 0; i < links.length; i++) { if (links[i].getAttribute("href") === "#") continue; // Ignore external links if (links[i].host !== location.host) continue; var nav_path = paths(links[i].pathname); var length = prefix_length(nav_path, cur_path); if (length > max_length) { max_length = length; pos = i; } } // Add class to parent
  • , and enclosing
  • if in dropdown if (pos >= 0) { var menu_anchor = $(links[pos]); menu_anchor.parent().addClass("active"); menu_anchor.closest("li.dropdown").addClass("active"); } }); function paths(pathname) { var pieces = pathname.split("/"); pieces.shift(); // always starts with / var end = pieces[pieces.length - 1]; if (end === "index.html" || end === "") pieces.pop(); return(pieces); } // Returns -1 if not found function prefix_length(needle, haystack) { if (needle.length > haystack.length) return(-1); // Special case for length-0 haystack, since for loop won't run if (haystack.length === 0) { return(needle.length === 0 ? 0 : -1); } for (var i = 0; i < haystack.length; i++) { if (needle[i] != haystack[i]) return(i); } return(haystack.length); } /* Clipboard --------------------------*/ function changeTooltipMessage(element, msg) { var tooltipOriginalTitle=element.getAttribute('data-original-title'); element.setAttribute('data-original-title', msg); $(element).tooltip('show'); element.setAttribute('data-original-title', tooltipOriginalTitle); } if(ClipboardJS.isSupported()) { $(document).ready(function() { var copyButton = ""; $("div.sourceCode").addClass("hasCopyButton"); // Insert copy buttons: $(copyButton).prependTo(".hasCopyButton"); // Initialize tooltips: $('.btn-copy-ex').tooltip({container: 'body'}); // Initialize clipboard: var clipboardBtnCopies = new ClipboardJS('[data-clipboard-copy]', { text: function(trigger) { return trigger.parentNode.textContent.replace(/\n#>[^\n]*/g, ""); } }); clipboardBtnCopies.on('success', function(e) { changeTooltipMessage(e.trigger, 'Copied!'); e.clearSelection(); }); clipboardBtnCopies.on('error', function() { changeTooltipMessage(e.trigger,'Press Ctrl+C or Command+C to copy'); }); }); } })(window.jQuery || window.$) pkgdown/inst/BS3/assets/bootstrap-toc.js0000644000176200001440000001123414134110164017723 0ustar liggesusers/*! * Bootstrap Table of Contents v0.4.1 (http://afeld.github.io/bootstrap-toc/) * Copyright 2015 Aidan Feldman * Licensed under MIT (https://github.com/afeld/bootstrap-toc/blob/gh-pages/LICENSE.md) */ (function() { 'use strict'; window.Toc = { helpers: { // return all matching elements in the set, or their descendants findOrFilter: function($el, selector) { // http://danielnouri.org/notes/2011/03/14/a-jquery-find-that-also-finds-the-root-element/ // http://stackoverflow.com/a/12731439/358804 var $descendants = $el.find(selector); return $el.filter(selector).add($descendants).filter(':not([data-toc-skip])'); }, generateUniqueIdBase: function(el) { var text = $(el).text(); var anchor = text.trim().toLowerCase().replace(/[^A-Za-z0-9]+/g, '-'); return anchor || el.tagName.toLowerCase(); }, generateUniqueId: function(el) { var anchorBase = this.generateUniqueIdBase(el); for (var i = 0; ; i++) { var anchor = anchorBase; if (i > 0) { // add suffix anchor += '-' + i; } // check if ID already exists if (!document.getElementById(anchor)) { return anchor; } } }, generateAnchor: function(el) { if (el.id) { return el.id; } else { var anchor = this.generateUniqueId(el); el.id = anchor; return anchor; } }, createNavList: function() { return $(''); }, createChildNavList: function($parent) { var $childList = this.createNavList(); $parent.append($childList); return $childList; }, generateNavEl: function(anchor, text) { var $a = $(''); $a.attr('href', '#' + anchor); $a.text(text); var $li = $('
  • '); $li.append($a); return $li; }, generateNavItem: function(headingEl) { var anchor = this.generateAnchor(headingEl); var $heading = $(headingEl); var text = $heading.data('toc-text') || $heading.text(); return this.generateNavEl(anchor, text); }, // Find the first heading level (`

    `, then `

    `, etc.) that has more than one element. Defaults to 1 (for `

    `). getTopLevel: function($scope) { for (var i = 1; i <= 6; i++) { var $headings = this.findOrFilter($scope, 'h' + i); if ($headings.length > 1) { return i; } } return 1; }, // returns the elements for the top level, and the next below it getHeadings: function($scope, topLevel) { var topSelector = 'h' + topLevel; var secondaryLevel = topLevel + 1; var secondarySelector = 'h' + secondaryLevel; return this.findOrFilter($scope, topSelector + ',' + secondarySelector); }, getNavLevel: function(el) { return parseInt(el.tagName.charAt(1), 10); }, populateNav: function($topContext, topLevel, $headings) { var $context = $topContext; var $prevNav; var helpers = this; $headings.each(function(i, el) { var $newNav = helpers.generateNavItem(el); var navLevel = helpers.getNavLevel(el); // determine the proper $context if (navLevel === topLevel) { // use top level $context = $topContext; } else if ($prevNav && $context === $topContext) { // create a new level of the tree and switch to it $context = helpers.createChildNavList($prevNav); } // else use the current $context $context.append($newNav); $prevNav = $newNav; }); }, parseOps: function(arg) { var opts; if (arg.jquery) { opts = { $nav: arg }; } else { opts = arg; } opts.$scope = opts.$scope || $(document.body); return opts; } }, // accepts a jQuery object, or an options object init: function(opts) { opts = this.helpers.parseOps(opts); // ensure that the data attribute is in place for styling opts.$nav.attr('data-toggle', 'toc'); var $topContext = this.helpers.createChildNavList(opts.$nav); var topLevel = this.helpers.getTopLevel(opts.$scope); var $headings = this.helpers.getHeadings(opts.$scope, topLevel); this.helpers.populateNav($topContext, topLevel, $headings); } }; $(function() { $('nav[data-toggle="toc"]').each(function(i, el) { var $nav = $(el); Toc.init($nav); }); }); })(); pkgdown/inst/BS3/assets/pkgdown.css0000644000176200001440000001621414134110164016753 0ustar liggesusers/* Sticky footer */ /** * Basic idea: https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/ * Details: https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css * * .Site -> body > .container * .Site-content -> body > .container .row * .footer -> footer * * Key idea seems to be to ensure that .container and __all its parents__ * have height set to 100% * */ html, body { height: 100%; } body { position: relative; } body > .container { display: flex; height: 100%; flex-direction: column; } body > .container .row { flex: 1 0 auto; } footer { margin-top: 45px; padding: 35px 0 36px; border-top: 1px solid #e5e5e5; color: #666; display: flex; flex-shrink: 0; } footer p { margin-bottom: 0; } footer div { flex: 1; } footer .pkgdown { text-align: right; } footer p { margin-bottom: 0; } img.icon { float: right; } /* Ensure in-page images don't run outside their container */ .contents img { max-width: 100%; height: auto; } /* Fix bug in bootstrap (only seen in firefox) */ summary { display: list-item; } /* Typographic tweaking ---------------------------------*/ .contents .page-header { margin-top: calc(-60px + 1em); } dd { margin-left: 3em; } /* Section anchors ---------------------------------*/ a.anchor { display: none; margin-left: 5px; width: 20px; height: 20px; background-image: url(./link.svg); background-repeat: no-repeat; background-size: 20px 20px; background-position: center center; } h1:hover .anchor, h2:hover .anchor, h3:hover .anchor, h4:hover .anchor, h5:hover .anchor, h6:hover .anchor { display: inline-block; } /* Fixes for fixed navbar --------------------------*/ .contents h1, .contents h2, .contents h3, .contents h4 { padding-top: 60px; margin-top: -40px; } /* Navbar submenu --------------------------*/ .dropdown-submenu { position: relative; } .dropdown-submenu>.dropdown-menu { top: 0; left: 100%; margin-top: -6px; margin-left: -1px; border-radius: 0 6px 6px 6px; } .dropdown-submenu:hover>.dropdown-menu { display: block; } .dropdown-submenu>a:after { display: block; content: " "; float: right; width: 0; height: 0; border-color: transparent; border-style: solid; border-width: 5px 0 5px 5px; border-left-color: #cccccc; margin-top: 5px; margin-right: -10px; } .dropdown-submenu:hover>a:after { border-left-color: #ffffff; } .dropdown-submenu.pull-left { float: none; } .dropdown-submenu.pull-left>.dropdown-menu { left: -100%; margin-left: 10px; border-radius: 6px 0 6px 6px; } /* Sidebar --------------------------*/ #pkgdown-sidebar { margin-top: 30px; position: -webkit-sticky; position: sticky; top: 70px; } #pkgdown-sidebar h2 { font-size: 1.5em; margin-top: 1em; } #pkgdown-sidebar h2:first-child { margin-top: 0; } #pkgdown-sidebar .list-unstyled li { margin-bottom: 0.5em; } /* bootstrap-toc tweaks ------------------------------------------------------*/ /* All levels of nav */ nav[data-toggle='toc'] .nav > li > a { padding: 4px 20px 4px 6px; font-size: 1.5rem; font-weight: 400; color: inherit; } nav[data-toggle='toc'] .nav > li > a:hover, nav[data-toggle='toc'] .nav > li > a:focus { padding-left: 5px; color: inherit; border-left: 1px solid #878787; } nav[data-toggle='toc'] .nav > .active > a, nav[data-toggle='toc'] .nav > .active:hover > a, nav[data-toggle='toc'] .nav > .active:focus > a { padding-left: 5px; font-size: 1.5rem; font-weight: 400; color: inherit; border-left: 2px solid #878787; } /* Nav: second level (shown on .active) */ nav[data-toggle='toc'] .nav .nav { display: none; /* Hide by default, but at >768px, show it */ padding-bottom: 10px; } nav[data-toggle='toc'] .nav .nav > li > a { padding-left: 16px; font-size: 1.35rem; } nav[data-toggle='toc'] .nav .nav > li > a:hover, nav[data-toggle='toc'] .nav .nav > li > a:focus { padding-left: 15px; } nav[data-toggle='toc'] .nav .nav > .active > a, nav[data-toggle='toc'] .nav .nav > .active:hover > a, nav[data-toggle='toc'] .nav .nav > .active:focus > a { padding-left: 15px; font-weight: 500; font-size: 1.35rem; } /* orcid ------------------------------------------------------------------- */ .orcid { font-size: 16px; color: #A6CE39; /* margins are required by official ORCID trademark and display guidelines */ margin-left:4px; margin-right:4px; vertical-align: middle; } /* Reference index & topics ----------------------------------------------- */ .ref-index th {font-weight: normal;} .ref-index td {vertical-align: top; min-width: 100px} .ref-index .icon {width: 40px;} .ref-index .alias {width: 40%;} .ref-index-icons .alias {width: calc(40% - 40px);} .ref-index .title {width: 60%;} .ref-arguments th {text-align: right; padding-right: 10px;} .ref-arguments th, .ref-arguments td {vertical-align: top; min-width: 100px} .ref-arguments .name {width: 20%;} .ref-arguments .desc {width: 80%;} /* Nice scrolling for wide elements --------------------------------------- */ table { display: block; overflow: auto; } /* Syntax highlighting ---------------------------------------------------- */ pre, code, pre code { background-color: #f8f8f8; color: #333; } pre, pre code { white-space: pre-wrap; word-break: break-all; overflow-wrap: break-word; } pre { border: 1px solid #eee; } pre .img, pre .r-plt { margin: 5px 0; } pre .img img, pre .r-plt img { background-color: #fff; } code a, pre a { color: #375f84; } a.sourceLine:hover { text-decoration: none; } .fl {color: #1514b5;} .fu {color: #000000;} /* function */ .ch,.st {color: #036a07;} /* string */ .kw {color: #264D66;} /* keyword */ .co {color: #888888;} /* comment */ .error {font-weight: bolder;} .warning {font-weight: bolder;} /* Clipboard --------------------------*/ .hasCopyButton { position: relative; } .btn-copy-ex { position: absolute; right: 0; top: 0; visibility: hidden; } .hasCopyButton:hover button.btn-copy-ex { visibility: visible; } /* headroom.js ------------------------ */ .headroom { will-change: transform; transition: transform 200ms linear; } .headroom--pinned { transform: translateY(0%); } .headroom--unpinned { transform: translateY(-100%); } /* mark.js ----------------------------*/ mark { background-color: rgba(255, 255, 51, 0.5); border-bottom: 2px solid rgba(255, 153, 51, 0.3); padding: 1px; } /* vertical spacing after htmlwidgets */ .html-widget { margin-bottom: 10px; } /* fontawesome ------------------------ */ .fab { font-family: "Font Awesome 5 Brands" !important; } /* don't display links in code chunks when printing */ /* source: https://stackoverflow.com/a/10781533 */ @media print { code a:link:after, code a:visited:after { content: ""; } } /* Section anchors --------------------------------- Added in pandoc 2.11: https://github.com/jgm/pandoc-templates/commit/9904bf71 */ div.csl-bib-body { } div.csl-entry { clear: both; } .hanging-indent div.csl-entry { margin-left:2em; text-indent:-2em; } div.csl-left-margin { min-width:2em; float:left; } div.csl-right-inline { margin-left:2em; padding-left:1em; } div.csl-indent { margin-left: 2em; } pkgdown/inst/BS3/assets/bootstrap-toc.css0000644000176200001440000000346314134110164020104 0ustar liggesusers/*! * Bootstrap Table of Contents v0.4.1 (http://afeld.github.io/bootstrap-toc/) * Copyright 2015 Aidan Feldman * Licensed under MIT (https://github.com/afeld/bootstrap-toc/blob/gh-pages/LICENSE.md) */ /* modified from https://github.com/twbs/bootstrap/blob/94b4076dd2efba9af71f0b18d4ee4b163aa9e0dd/docs/assets/css/src/docs.css#L548-L601 */ /* All levels of nav */ nav[data-toggle='toc'] .nav > li > a { display: block; padding: 4px 20px; font-size: 13px; font-weight: 500; color: #767676; } nav[data-toggle='toc'] .nav > li > a:hover, nav[data-toggle='toc'] .nav > li > a:focus { padding-left: 19px; color: #563d7c; text-decoration: none; background-color: transparent; border-left: 1px solid #563d7c; } nav[data-toggle='toc'] .nav > .active > a, nav[data-toggle='toc'] .nav > .active:hover > a, nav[data-toggle='toc'] .nav > .active:focus > a { padding-left: 18px; font-weight: bold; color: #563d7c; background-color: transparent; border-left: 2px solid #563d7c; } /* Nav: second level (shown on .active) */ nav[data-toggle='toc'] .nav .nav { display: none; /* Hide by default, but at >768px, show it */ padding-bottom: 10px; } nav[data-toggle='toc'] .nav .nav > li > a { padding-top: 1px; padding-bottom: 1px; padding-left: 30px; font-size: 12px; font-weight: normal; } nav[data-toggle='toc'] .nav .nav > li > a:hover, nav[data-toggle='toc'] .nav .nav > li > a:focus { padding-left: 29px; } nav[data-toggle='toc'] .nav .nav > .active > a, nav[data-toggle='toc'] .nav .nav > .active:hover > a, nav[data-toggle='toc'] .nav .nav > .active:focus > a { padding-left: 28px; font-weight: 500; } /* from https://github.com/twbs/bootstrap/blob/e38f066d8c203c3e032da0ff23cd2d6098ee2dd6/docs/assets/css/src/docs.css#L631-L634 */ nav[data-toggle='toc'] .nav > .active > ul { display: block; } pkgdown/inst/BS5/0000755000176200001440000000000014343702121013266 5ustar liggesuserspkgdown/inst/BS5/templates/0000755000176200001440000000000014326511350015267 5ustar liggesuserspkgdown/inst/BS5/templates/navbar.html0000644000176200001440000000300014165741725017433 0ustar liggesusers{{#navbar}} {{/navbar}} pkgdown/inst/BS5/templates/content-home.html0000644000176200001440000000023414150723564020563 0ustar liggesusers
    {{{index}}}
    pkgdown/inst/BS5/templates/content-reference-topic.html0000644000176200001440000000213514150723567022712 0ustar liggesusers
    {{#description}} {{#contents}} {{{.}}} {{/contents}} {{/description}}
    {{#usage}}

    {{{title}}}

    {{#contents}} {{{.}}} {{/contents}}
    {{/usage}} {{#sections}}

    {{{title}}}

    {{#contents}} {{{.}}} {{/contents}}
    {{/sections}} {{#examples}}

    {{#translate}}{{examples}}{{/translate}}

    {{{.}}}
    {{/examples}}
    pkgdown/inst/BS5/templates/content-reference-index.html0000644000176200001440000000156114250163445022677 0ustar liggesusers
    {{#rows}}
    {{#title}}

    {{{.}}}

    {{/title}} {{#subtitle}}

    {{{.}}}

    {{/subtitle}} {{#desc}}

    {{{desc}}}

    {{/desc}} {{#topics}}
    {{#has_icons}}{{#icon}}{{/icon}}{{/has_icons}} {{#aliases}}{{{.}}} {{/aliases}}
    {{{title}}}
    {{/topics}}
    {{/rows}}
    pkgdown/inst/BS5/templates/content-title-body.html0000644000176200001440000000065014150723564021711 0ustar liggesusers
    {{{body}}}
    pkgdown/inst/BS5/templates/content-news.html0000644000176200001440000000067614150723564020621 0ustar liggesusers
    {{#contents}} {{{html}}} {{/contents}}
    pkgdown/inst/BS5/templates/content-citation-authors.html0000644000176200001440000000200314150723564023124 0ustar liggesusers

    {{#translate}}{{authors}}{{/translate}}

    {{{before}}}
      {{#authors}}
    • {{{name}}}. {{{roles}}}. {{{orcid}}} {{#comment}}
      {{{.}}}{{/comment}}

    • {{/authors}}
    {{{after}}}

    {{#translate}}{{citation}}{{/translate}}

    {{#source}}{{{.}}}{{/source}}

    {{#citations}} {{{html}}}
    {{{bibtex}}}
    {{/citations}}
    pkgdown/inst/BS5/templates/content-article-index.html0000644000176200001440000000121314250163445022356 0ustar liggesusers
    {{#sections}}

    {{{title}}}

    {{{desc}}}

    {{#contents}}
    {{title}}
    {{{description}}} {{/contents}}
    {{/sections}}
    pkgdown/inst/BS5/templates/content-authors.html0000644000176200001440000000121414150723564021317 0ustar liggesusers
    {{{before}}}
      {{#authors}}
    • {{{name}}}. {{{roles}}}. {{{orcid}}} {{#comment}}
      {{{.}}}{{/comment}}

    • {{/authors}}
    {{{after}}}
    pkgdown/inst/BS5/templates/in-header.html0000644000176200001440000000005214136064064020012 0ustar liggesusers{{#includes}}{{{in_header}}}{{/includes}} pkgdown/inst/BS5/templates/before-body.html0000644000176200001440000000005414136064064020355 0ustar liggesusers{{#includes}}{{{before_body}}}{{/includes}} pkgdown/inst/BS5/templates/config-docsearch.json0000644000176200001440000000354214150723564021373 0ustar liggesusers{ "index_name": "{{index}}", "start_urls": [ { "url": "{{url}}/index.html", "selectors_key": "homepage", "tags": [ "homepage" ] }, { "url": "{{url}}/reference", "selectors_key": "reference", "tags": [ "reference" ] }, { "url": "{{url}}/articles", "selectors_key": "articles", "tags": [ "articles" ] } ], "stop_urls": [ "/reference/$", "/reference/index.html", "/articles/$", "/articles/index.html" ], "sitemap_urls": [ "{{url}}/sitemap.xml" ], "selectors": { "homepage": { "lvl0": { "selector": "main h1", "default_value": "{{package}} Home page" }, "lvl1": { "selector": "main h2" }, "lvl2": { "selector": "main h3", "default_value": "Context" }, "lvl3": ".ref-arguments td, .ref-description", "text": "main p, main li, main .pre" }, "reference": { "lvl0": { "selector": "main h1" }, "lvl1": { "selector": "main .name", "default_value": "Argument" }, "lvl2": { "selector": ".ref-arguments th", "default_value": "Description" }, "lvl3": ".ref-arguments td, .ref-description", "text": "main p, main li" }, "articles": { "lvl0": { "selector": "main h1" }, "lvl1": { "selector": "main .name" }, "lvl2": { "selector": "main h2, main h3", "default_value": "Context" }, "text": "main p, main li" } }, "selectors_exclude": [ ".dont-index" ], "min_indexed_level": 2, "custom_settings": { "separatorsToIndex": "_", "attributesToRetrieve": [ "hierarchy", "content", "anchor", "url", "url_without_anchor" ] } } pkgdown/inst/BS5/templates/footer.html0000644000176200001440000000026414134110164017450 0ustar liggesusers{{#footer}} {{/footer}} pkgdown/inst/BS5/templates/header.html0000644000176200001440000000000014134110164017366 0ustar liggesuserspkgdown/inst/BS5/templates/content-article.html0000644000176200001440000000257514247740574021277 0ustar liggesusers{{^as_is}}$for(header-includes)$ $header-includes$ $endfor${{/as_is}}
    $for(include-before)$ $include-before$ $endfor$ $if(abstract)$

    Abstract

    $abstract$
    $endif$ $body$
    {{#toc}} {{/toc}}
    $for(include-after)$ $include-after$ $endfor$ pkgdown/inst/BS5/templates/content-tutorial.html0000644000176200001440000000063314150723564021501 0ustar liggesusers
    pkgdown/inst/BS5/templates/layout.html0000644000176200001440000000073714150723564017510 0ustar liggesusers {{{ head }}} {{{ in-header }}} {{#translate}}{{skip}}{{/translate}} {{{ before-body }}} {{{ navbar }}}
    {{{ content }}}
    {{{ footer }}}
    {{{ docsearch }}} {{{ after-body }}} pkgdown/inst/BS5/templates/layout-redirect.html0000644000176200001440000000026514150723564021303 0ustar liggesusers pkgdown/inst/BS5/templates/after-body.html0000644000176200001440000000005314136064064020213 0ustar liggesusers{{#includes}}{{{after_body}}}{{/includes}} pkgdown/inst/BS5/templates/content-news-index.html0000644000176200001440000000075614150723564021725 0ustar liggesusers
    pkgdown/inst/BS5/templates/content-tutorial-index.html0000644000176200001440000000070414150723564022605 0ustar liggesusers
    pkgdown/inst/BS5/templates/head.html0000644000176200001440000001301414326511350017055 0ustar liggesusers {{#opengraph}} {{#description}} {{/description}} {{/opengraph}} {{{pagetitle}}} • {{#site}}{{title}}{{/site}} {{#has_favicons}} {{/has_favicons}} {{{headdeps}}} {{#extra}} {{#css}}{{/css}} {{#js}}{{/js}} {{/extra}} {{#opengraph}} {{#description}} {{/description}} {{#image}} {{#alt}} {{/alt}} {{/image}} {{#twitter}} {{#card}} {{/card}} {{^card}} {{/card}} {{#creator}} {{/creator}} {{#site}} {{/site}} {{/twitter}} {{/opengraph}} {{#yaml}}{{#noindex}}{{/noindex}}{{/yaml}} {{#development}}{{#in_dev}}{{/in_dev}}{{/development}} {{#yaml}}{{#google_site_verification}} {{/google_site_verification}}{{/yaml}} {{#yaml}}{{#ganalytics}} {{/ganalytics}}{{/yaml}} {{#has_trailingslash}} {{/has_trailingslash}} {{#has_deps}} {{{dependencies}}} {{/has_deps}} pkgdown/inst/BS5/assets/0000755000176200001440000000000014247745615014612 5ustar liggesuserspkgdown/inst/BS5/assets/link.svg0000644000176200001440000000145214134110164016246 0ustar liggesusers pkgdown/inst/BS5/assets/pkgdown.js0000644000176200001440000001046614230261006016603 0ustar liggesusers/* http://gregfranko.com/blog/jquery-best-practices/ */ (function($) { $(function() { $('nav.navbar').headroom(); Toc.init({ $nav: $("#toc"), $scope: $("main h2, main h3, main h4, main h5, main h6") }); if ($('#toc').length) { $('body').scrollspy({ target: '#toc', offset: $("nav.navbar").outerHeight() + 1 }); } // Activate popovers $('[data-bs-toggle="popover"]').popover({ container: 'body', html: true, trigger: 'focus', placement: "top", sanitize: false, }); $('[data-bs-toggle="tooltip"]').tooltip(); /* Clipboard --------------------------*/ function changeTooltipMessage(element, msg) { var tooltipOriginalTitle=element.getAttribute('data-original-title'); element.setAttribute('data-original-title', msg); $(element).tooltip('show'); element.setAttribute('data-original-title', tooltipOriginalTitle); } if(ClipboardJS.isSupported()) { $(document).ready(function() { var copyButton = ""; $("div.sourceCode").addClass("hasCopyButton"); // Insert copy buttons: $(copyButton).prependTo(".hasCopyButton"); // Initialize tooltips: $('.btn-copy-ex').tooltip({container: 'body'}); // Initialize clipboard: var clipboard = new ClipboardJS('[data-clipboard-copy]', { text: function(trigger) { return trigger.parentNode.textContent.replace(/\n#>[^\n]*/g, ""); } }); clipboard.on('success', function(e) { changeTooltipMessage(e.trigger, 'Copied!'); e.clearSelection(); }); clipboard.on('error', function() { changeTooltipMessage(e.trigger,'Press Ctrl+C or Command+C to copy'); }); }); } /* Search marking --------------------------*/ var url = new URL(window.location.href); var toMark = url.searchParams.get("q"); var mark = new Mark("main#main"); if (toMark) { mark.mark(toMark, { accuracy: { value: "complementary", limiters: [",", ".", ":", "/"], } }); } /* Search --------------------------*/ /* Adapted from https://github.com/rstudio/bookdown/blob/2d692ba4b61f1e466c92e78fd712b0ab08c11d31/inst/resources/bs4_book/bs4_book.js#L25 */ // Initialise search index on focus var fuse; $("#search-input").focus(async function(e) { if (fuse) { return; } $(e.target).addClass("loading"); var response = await fetch($("#search-input").data("search-index")); var data = await response.json(); var options = { keys: ["what", "text", "code"], ignoreLocation: true, threshold: 0.1, includeMatches: true, includeScore: true, }; fuse = new Fuse(data, options); $(e.target).removeClass("loading"); }); // Use algolia autocomplete var options = { autoselect: true, debug: true, hint: false, minLength: 2, }; var q; async function searchFuse(query, callback) { await fuse; var items; if (!fuse) { items = []; } else { q = query; var results = fuse.search(query, { limit: 20 }); items = results .filter((x) => x.score <= 0.75) .map((x) => x.item); if (items.length === 0) { items = [{dir:"Sorry 😿",previous_headings:"",title:"No results found.",what:"No results found.",path:window.location.href}]; } } callback(items); } $("#search-input").autocomplete(options, [ { name: "content", source: searchFuse, templates: { suggestion: (s) => { if (s.title == s.what) { return `${s.dir} >
    ${s.title}
    `; } else if (s.previous_headings == "") { return `${s.dir} >
    ${s.title}
    > ${s.what}`; } else { return `${s.dir} >
    ${s.title}
    > ${s.previous_headings} > ${s.what}`; } }, }, }, ]).on('autocomplete:selected', function(event, s) { window.location.href = s.path + "?q=" + q + "#" + s.id; }); }); })(window.jQuery || window.$) pkgdown/inst/BS5/assets/pkgdown.scss0000644000176200001440000002621114247745615017162 0ustar liggesusers/* control page width ====================================================== */ // Ensure contents never become unreadably wide .row > main { max-width: 50rem; } // Put extra space between content and navbar @include media-breakpoint-only(xl) { .container .row { justify-content: space-evenly; } } // Boost font size and give big (but not infinite) margin on sidebar @include media-breakpoint-up(xxl) { body { font-size: 18px } .col-md-3 { margin-left: 5rem; } } /* navbar =================================================================== */ // boostrap doesn't style active/hovered nav making it hard to see where // you are and where you're going, so we add our own styling .navbar-nav .nav-item > .nav-link { @include border-radius($border-radius); padding: 0.5rem; } // Align baselines of package name, version, and nav items .navbar > .container { align-items: baseline; -webkit-align-items: baseline; } .navbar-light .navbar-nav .active > .nav-link { background: $gray-200; color: $body-color; } .navbar-dark .navbar-nav .active > .nav-link { background: $gray-800; color: $body-bg; } .navbar-dark .navbar-nav .nav-item > .nav-link:hover, .navbar-light .navbar-nav .nav-item > .nav-link:hover { background: change-color($primary, $alpha: 0.1); } .navbar-dark { input[type="search"] { border-color: $gray-600; background-color: $gray-900; color: $gray-200; } } input[type="search"] { border-color: $border-color; width: 12rem; } /* headroom.js -------------------------------------------------------------- */ .headroom { will-change: transform; transition: transform 400ms ease; } .headroom--pinned { transform: translateY(0%); } .headroom--unpinned { transform: translateY(-100%); } // Need to adjust body components down by height of navbar so it // doesn't overlap them when visible $pkgdown-nav-height: 56px !default; .row > main, .row > aside { margin-top: $pkgdown-nav-height; } html, body { scroll-padding: $pkgdown-nav-height } // Make scrollable, sticky TOC @include media-breakpoint-up(sm) { #toc { position: sticky; top: $pkgdown-nav-height; max-height: calc(100vh - #{$pkgdown-nav-height} - 1rem); overflow-y: auto; } } /* sidebar ================================================================== */ aside { h2 { margin-top: 1.5rem; font-size: $font-size-lg; } .roles { color: mix($body-color, $body-bg, 80%); } .list-unstyled li { margin-bottom: 0.5rem; } .dev-status .list-unstyled li { margin-bottom: 0.1rem; } } // Add some visual distinction between content and "sidebar" on mobile @include media-breakpoint-down(sm) { aside { margin: 0.5rem; width: calc(100vw - 1rem); background-color: $gray-100; border-color: $border-color; @include border-radius($border-radius); h2:first-child { margin-top: 1rem; } } } /* table of contents -------------------------------------------------------- */ $pkgdown-toc-border-width: 0 !default; $pkgdown-toc-border-color: $border-color !default; $pkgdown-toc-active-bg: mix($body-color, $body-bg, 10%) !default; $pkgdown-toc-active-color: color-contrast($pkgdown-toc-active-bg) !default; $pkgdown-toc-hover-bg: change-color($primary, $alpha: 0.1) !default; $pkgdown-toc-hover-color: color-contrast($pkgdown-toc-active-bg) !default; // needed for scrollspy body {position: relative;} #toc > .nav { margin-bottom: 1rem; a.nav-link { color: inherit; padding: 0.25rem 0.5rem; margin-bottom: 2px; @include border-radius($border-radius); border: $pkgdown-toc-border-width solid $pkgdown-toc-border-color; &:hover, &:focus { background-color: $pkgdown-toc-hover-bg; color: $pkgdown-toc-hover-color; } &.active { background-color: $pkgdown-toc-active-bg; color: $pkgdown-toc-active-color; } } // Nested headings are indented .nav a.nav-link { margin-left: 0.5rem; } // Only show second level if active. // Requires !important because that's how BS5 sets display: flex .nav { display: none !important; } a.active + .nav { display: flex !important; } } /* footer ================================================================== */ $pkgdown-footer-color: mix($body-color, $body-bg, 80%) !default; $pkgdown-footer-bg: transparent !default; $pkgdown-footer-border-color: $border-color !default; $pkgdown-footer-border-width: $border-width !default; footer { margin: 1rem 0 1rem 0; font-size: .875em; border-top: $pkgdown-footer-border-width solid $pkgdown-footer-border-color; background: $pkgdown-footer-bg; color: $pkgdown-footer-color; display: flex; column-gap: 1rem; } @include media-breakpoint-down(sm) { footer {flex-direction: column;} } @include media-breakpoint-up(sm) { footer .pkgdown-footer-right { text-align: right;} } footer div { flex: 1 1 auto; } // "Sticky" footer - i.e. the footer always hugs the bottom of the viewport // even for short pages. // // Basic idea: https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/ // Details: https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css // Need .container and __all parents__ have height set to 100% html, body { height: 100%; } body > .container { min-height: 100%; display: flex; flex-direction: column; } body > .container .row { flex: 1 0 auto; } /* General typography ======================================================= */ ::selection { background-color: mix($primary, $body-bg, 20%); } // Ensure in-page images don't run outside their container main img { max-width: 100%; height: auto; } main table { display: block; overflow: auto; } // avoid flash of invisible text + flash of unstyled text body { font-display: fallback; } // page header .page-header { border-bottom: 1px solid $border-color; padding-bottom: 0.5rem; margin-bottom: 0.5rem; margin-top: 1.5rem; } // spacing tweaks dd { margin-left: 1.5rem; } summary { margin-bottom: 0.5rem; } details { margin-bottom: 1rem; } .html-widget { margin-bottom: 1rem; } // Section anchors a.anchor { display: none; margin-left: 5px; width: Min(0.9em, 20px); height: Min(0.9em, 20px); background-image: url(../../link.svg); background-repeat: no-repeat; background-size: Min(0.9em, 20px) Min(0.9em, 20px); background-position: center center; } h2, h3, h4, h5, h6 { &:hover .anchor {display: inline-block;} } // orcid badge .orcid { color: #A6CE39; margin-right: 4px; } // activate font awesome .fab { font-family: "Font Awesome 5 Brands" !important; } // package logo img.logo { float: right; width: 100px; margin-left: 30px; } .template-home img.logo { width: 120px; } @include media-breakpoint-down(sm) { img.logo {width: 80px;} } // line up h1 border-bottom with corner of hexagon // values determined empirically @include media-breakpoint-up(sm) { .page-header {min-height: 88px} .template-home .page-header {min-height: 104px} } // line-block produced by pandoc needs margin-bottom since it doesn't // contain other tags .line-block { margin-bottom: 1rem; } // Override bootstrap defaults that make sense in page bodies, but not on // the reference index .template-reference-index { dt {font-weight: normal;} // Don't allow breaking within a function name code {word-wrap: normal;} } .icon { float: right; img {width: 40px;} } /* Footnotes ---------------------------------------------------------------- */ a.footnote-ref { cursor: pointer; } // use "Min" to trigger computation in css, not sass .popover { width: Min(100vw, 32rem); font-size: 0.9rem; box-shadow: 4px 4px 8px change-color($black, $alpha: 0.3); } .popover-body { padding: 0.75rem; } .popover-body p:last-child { margin-bottom: 0; } /* tabsets ------------------------------------------------------------------ */ .tab-content { padding: 1rem; } .tabset-pills .tab-content { border: solid 1px #e5e5e5; } // Make tab height consistent // https://observablehq.com/@rkaravia/css-trick-tabs-with-consistent-height .tab-content { display: flex; } .tab-content > .tab-pane { display: block; /* undo "display: none;" */ visibility: hidden; margin-right: -100%; width: 100%; } .tab-content > .active { visibility: visible; } /* bibliography styling ----------------------------------------------------- */ // Added in pandoc 2.11: https://github.com/jgm/pandoc-templates/commit/9904bf71 div.csl-bib-body { } div.csl-entry { clear: both; } .hanging-indent div.csl-entry { margin-left:2em; text-indent:-2em; } div.csl-left-margin { min-width:2em; float:left; } div.csl-right-inline { margin-left:2em; padding-left:1em; } div.csl-indent { margin-left: 2em; } /* code ===================================================================== */ pre, pre code { // override bootstrap deafult that causes problems in old safari + IE // https://github.com/rstudio/shiny/issues/2233 word-wrap: normal; } code { // break long functions into multiple lines overflow-wrap: break-word; } // copy button .hasCopyButton { position: relative; } .btn-copy-ex { position: absolute; right: 5px; top: 5px; visibility: hidden; } .hasCopyButton:hover button.btn-copy-ex { visibility: visible; } // Ensure there's enough space for the copy button pre { padding: 1rem 0.5rem; } // "Pop" code out of page margins on small screens to give a little more room @include media-breakpoint-down(sm) { // div.section div.sourceCode pre // prevents matching
     inside (e.g.) a 
  • div > div > pre { margin-left: calc(var(--bs-gutter-x) * -.5); margin-right: calc(var(--bs-gutter-x) * -.5); border-radius: 0; padding-left: 1rem; padding-right: 1rem; } .btn-copy-ex { right: calc(var(--bs-gutter-x) * -.5 + 5px); } } code a:any-link { color: inherit; text-decoration-color: $gray-600; } pre code { padding: 0; background: transparent; .error, .warning {font-weight: bolder;} } pre .img, pre .r-plt { img { margin: 5px 0; background-color: #fff; } } /* don't display links in code chunks when printing */ /* source: https://stackoverflow.com/a/10781533 */ @media print { code a:link:after, code a:visited:after { content: ""; } } a.sourceLine:hover { text-decoration: none; } /* search =================================================================== */ mark { background: linear-gradient(-100deg, change-color($info, $alpha: 0.2), change-color($info, $alpha: 0.7) 95%, change-color($info, $alpha: 0.1) ) } .algolia-autocomplete .aa-hint { color: $gray-900; } /* "Max" needed until libsass supports https://sass-lang.com/documentation/syntax/special-functions#min-and-max */ .algolia-autocomplete .aa-dropdown-menu { width: Max(100%, 20rem); background-color: $body-bg; border: $border-width solid $table-border-color; margin-top: 2px; max-height: 50vh; overflow-y: auto; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion { cursor: pointer; padding: 5px 4px; border-bottom: 1px $gray-200 solid; font-size: 0.9rem; color: $gray-900; } .search-details { font-size: 0.9rem; color: $primary; display: inline; font-weight: bolder; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor { background-color: mix($primary, $body-bg, 10%); } pkgdown/inst/highlight-styles/0000755000176200001440000000000014247740574016206 5ustar liggesuserspkgdown/inst/highlight-styles/tango.scss0000644000176200001440000000344614246155422020211 0ustar liggesuserspre {background-color: #f8f8f8;} pre code span.al /* Alert */ {color:#ef2929} pre code span.an /* Annotation */ {color:#8f5902; font-weight: bold; font-style: italic} pre code span.at /* Attribute */ {color:#c4a000} pre code span.bn /* BaseN */ {color:#0000cf} pre code span.cf /* ControlFlow */ {color:#204a87; font-weight: bold} pre code span.ch /* Char */ {color:#4e9a06} pre code span.cn /* Constant */ {color:#000000} pre code span.co /* Comment */ {color:#8f5902; font-style: italic} pre code span.cv /* CommentVar */ {color:#8f5902; font-weight: bold; font-style: italic} pre code span.do /* Documentation */ {color:#8f5902; font-weight: bold; font-style: italic} pre code span.dt /* DataType */ {color:#204a87} pre code span.dv /* DecVal */ {color:#0000cf} pre code span.er /* Error */ {color:#a40000; font-weight: bold} pre code span.ex /* Extension */ {} pre code span.fl /* Float */ {color:#0000cf} pre code span.fu /* Function */ {color:#000000} pre code span.im /* Import */ {} pre code span.in /* Information */ {color:#8f5902; font-weight: bold; font-style: italic} pre code span.kw /* Keyword */ {color:#204a87; font-weight: bold} pre code span.op /* Operator */ {color:#ce5c00; font-weight: bold} pre code span.ot /* Other */ {color:#8f5902} pre code span.pp /* Preprocessor */ {color:#8f5902; font-style: italic} pre code span.sc /* SpecialChar */ {color:#000000} pre code span.ss /* SpecialString */ {color:#4e9a06} pre code span.st /* String */ {color:#4e9a06} pre code span.va /* Variable */ {color:#000000} pre code span.vs /* VerbatimString */ {color:#4e9a06} pre code span.wa /* Warning */ {color:#8f5902; font-weight: bold; font-style: italic} pkgdown/inst/highlight-styles/espresso.scss0000644000176200001440000000320114246155422020731 0ustar liggesuserspre {background-color: #2a211c; color: #bdae9d;} pre code span.al /* Alert */ {color:#ffff00} pre code span.an /* Annotation */ {color:#0066ff; font-weight: bold; font-style: italic} pre code span.at /* Attribute */ {} pre code span.bn /* BaseN */ {color:#44aa43} pre code span.bu /* BuiltIn */ {} pre code span.cf /* ControlFlow */ {color:#43a8ed; font-weight: bold} pre code span.ch /* Char */ {color:#049b0a} pre code span.cn /* Constant */ {} pre code span.co /* Comment */ {color:#0066ff; font-weight: bold; font-style: italic} pre code span.do /* Documentation */ {color:#0066ff; font-style: italic} pre code span.dt /* DataType */ {text-decoration: underline} pre code span.dv /* DecVal */ {color:#44aa43} pre code span.er /* Error */ {color:#ffff00; font-weight: bold} pre code span.ex /* Extension */ {} pre code span.fl /* Float */ {color:#44aa43} pre code span.fu /* Function */ {color:#ff9358; font-weight: bold} pre code span.im /* Import */ {} pre code span.in /* Information */ {color:#0066ff; font-weight: bold; font-style: italic} pre code span.kw /* Keyword */ {color:#43a8ed; font-weight: bold} pre code span.op /* Operator */ {} pre code span.pp /* Preprocessor */ {font-weight: bold} pre code span.sc /* SpecialChar */ {color:#049b0a} pre code span.ss /* SpecialString */ {color:#049b0a} pre code span.st /* String */ {color:#049b0a} pre code span.va /* Variable */ {} pre code span.vs /* VerbatimString */ {color:#049b0a} pre code span.wa /* Warning */ {color:#ffff00; font-weight: bold} pkgdown/inst/highlight-styles/haddock.scss0000644000176200001440000000233314245770621020473 0ustar liggesuserspre code span.al /* Alert */ {color:#ff0000} pre code span.an /* Annotation */ {color:#008000} pre code span.at /* Attribute */ {} pre code span.bu /* BuiltIn */ {} pre code span.cf /* ControlFlow */ {color:#0000ff} pre code span.ch /* Char */ {color:#008080} pre code span.cn /* Constant */ {} pre code span.co /* Comment */ {color:#008000} pre code span.cv /* CommentVar */ {color:#008000} pre code span.do /* Documentation */ {color:#008000} pre code span.er /* Error */ {color:#ff0000; font-weight: bold} pre code span.ex /* Extension */ {} pre code span.im /* Import */ {} pre code span.in /* Information */ {color:#008000} pre code span.kw /* Keyword */ {color:#0000ff} pre code span.op /* Operator */ {} pre code span.ot /* Other */ {color:#ff4000} pre code span.pp /* Preprocessor */ {color:#ff4000} pre code span.sc /* SpecialChar */ {color:#008080} pre code span.ss /* SpecialString */ {color:#008080} pre code span.st /* String */ {color:#008080} pre code span.va /* Variable */ {} pre code span.vs /* VerbatimString */ {color:#008080} pre code span.wa /* Warning */ {color:#008000; font-weight: bold} pkgdown/inst/highlight-styles/radical.scss0000644000176200001440000000356414247740574020512 0ustar liggesuserspre code /* Normal */ {color:#7c9c9e} pre code span.al /* Alert */ {color:#ff427b; background-color:#2f183b; font-weight: bold} pre code span.an /* Annotation */ {color:#fda8bc} pre code span.at /* Attribute */ {color:#5af5f0} pre code span.bn /* BaseN */ {color:#f834bb} pre code span.bu /* BuiltIn */ {color:#999ee1} pre code span.cf /* ControlFlow */ {color:#d5358f; font-weight: bold} pre code span.ch /* Char */ {color:#dff959} pre code span.cn /* Constant */ {color:#fa61b8; font-weight: bold} pre code span.co /* Comment */ {color:#45898c; font-style: italic} pre code span.cv /* CommentVar */ {color:#a8c0c2} pre code span.do /* Documentation */ {color:#75b7bb} pre code span.dt /* DataType */ {color:#ff85a1} pre code span.dv /* DecVal */ {color:#fa61b8} pre code span.er /* Error */ {color:#ff427b; font-weight: bold; font-style: italic; text-decoration: underline} pre code span.ex /* Extension */ {color:#a8ffdb; font-weight: bold} pre code span.fl /* Float */ {color:#f834bb} pre code span.fu /* Function */ {color:#a9fef7} pre code span.im /* Import */ {color:#a9fef7} pre code span.in /* Information */ {color:#ffd000} pre code span.kw /* Keyword */ {color:#d5358f; font-weight: bold} pre code span.op /* Operator */ {color:#d5358f} pre code span.ot /* Others */ {color:#5effbd} pre code span.pp /* Preprocessor */ {color:#d5358f} pre code span.re /* RegionMarker */ {color:#baf7fc; background-color:#242560} pre code span.sc /* SpecialChar */ {color:#c3f920} pre code span.ss /* SpecialString */ {color:#ff96aa} pre code span.st /* String */ {color:#a9fef7} pre code span.va /* Variable */ {color:#c7e3ee} pre code span.vs /* VerbatimString */ {color:#a8ffdb} pre code span.wa /* Warning */ {color:#ff427b} pkgdown/inst/highlight-styles/zenburn.scss0000644000176200001440000000320014246155422020550 0ustar liggesuserspre {background-color: #303030; color: #cccccc;} pre code span.al /* Alert */ {color:#ffcfaf} pre code span.an /* Annotation */ {color:#7f9f7f; font-weight: bold} pre code span.at /* Attribute */ {} pre code span.bn /* BaseN */ {color:#dca3a3} pre code span.bu /* BuiltIn */ {} pre code span.cf /* ControlFlow */ {color:#f0dfaf} pre code span.ch /* Char */ {color:#dca3a3} pre code span.cn /* Constant */ {color:#dca3a3; font-weight: bold} pre code span.co /* Comment */ {color:#7f9f7f} pre code span.cv /* CommentVar */ {color:#7f9f7f; font-weight: bold} pre code span.do /* Documentation */ {color:#7f9f7f} pre code span.dt /* DataType */ {color:#dfdfbf} pre code span.dv /* DecVal */ {color:#dcdccc} pre code span.er /* Error */ {color:#c3bf9f} pre code span.ex /* Extension */ {} pre code span.fl /* Float */ {color:#c0bed1} pre code span.fu /* Function */ {color:#efef8f} pre code span.im /* Import */ {} pre code span.in /* Information */ {color:#7f9f7f; font-weight: bold} pre code span.kw /* Keyword */ {color:#f0dfaf} pre code span.op /* Operator */ {color:#f0efd0} pre code span.ot /* Other */ {color:#efef8f} pre code span.pp /* Preprocessor */ {color:#ffcfaf; font-weight: bold} pre code span.sc /* SpecialChar */ {color:#dca3a3} pre code span.ss /* SpecialString */ {color:#cc9393} pre code span.st /* String */ {color:#cc9393} pre code span.va /* Variable */ {} pre code span.vs /* VerbatimString */ {color:#cc9393} pre code span.wa /* Warning */ {color:#7f9f7f; font-weight: bold} pkgdown/inst/highlight-styles/arrow-light.scss0000644000176200001440000000322714247740574021346 0ustar liggesuserspre {background-color: #f1f3f5;} pre code /* Normal */ {color:#003B4F} pre code span.al /* Alert */ {color:#AD0000} pre code span.an /* Annotation */ {color:#5E5E5E} pre code span.at /* Attribute */ {color:#657422} pre code span.bn /* BaseN */ {color:#AD0000} pre code span.bu /* BuiltIn */ {} pre code span.cf /* ControlFlow */ {color:#003B4F} pre code span.ch /* Char */ {color:#20794D} pre code span.cn /* Constant */ {color:#8f5902} pre code span.co /* Comment */ {color:#5E5E5E} pre code span.cv /* CommentVar */ {color:#5E5E5E; font-style: italic} pre code span.do /* Documentation */ {color:#5E5E5E; font-style: italic} pre code span.dt /* DataType */ {color:#AD0000} pre code span.dv /* DecVal */ {color:#AD0000} pre code span.er /* Error */ {color:#AD0000} pre code span.ex /* Extension */ {} pre code span.fl /* Float */ {color:#AD0000} pre code span.fu /* Function */ {color:#4758AB} pre code span.im /* Import */ {color:#00769E} pre code span.in /* Information */ {color:#5E5E5E} pre code span.kw /* Keyword */ {color:#003B4F} pre code span.op /* Operator */ {color:#5E5E5E} pre code span.ot /* Other */ {color:#003B4F} pre code span.pp /* Preprocessor */ {color:#AD0000} pre code span.sc /* SpecialChar */ {color:#5E5E5E} pre code span.ss /* SpecialString */ {color:#20794D} pre code span.st /* String */ {color:#20794D} pre code span.va /* Variable */ {color:#111111} pre code span.vs /* VerbatimString */ {color:#20794D} pre code span.wa /* Warning */ {color:#5E5E5E; font-style: italic} pkgdown/inst/highlight-styles/monochrome.scss0000644000176200001440000000127314245770621021246 0ustar liggesuserspre code span.al /* Alert */ {font-weight: bold} pre code span.an /* Annotation */ {font-style: italic} pre code span.cf /* ControlFlow */ {font-weight: bold} pre code span.co /* Comment */ {font-style: italic} pre code span.cv /* CommentVar */ {font-style: italic} pre code span.do /* Documentation */ {font-style: italic} pre code span.dt /* DataType */ {text-decoration: underline} pre code span.er /* Error */ {font-weight: bold} pre code span.in /* Information */ {font-style: italic} pre code span.kw /* Keyword */ {font-weight: bold} pre code span.pp /* Preprocessor */ {font-weight: bold} pre code span.wa /* Warning */ {font-style: italic} pkgdown/inst/highlight-styles/ayu-light.scss0000644000176200001440000000353314246155422021001 0ustar liggesuserspre {background-color: #fafafa;} pre code /* Normal */ {color:#575f66} pre code span.al /* Alert */ {color:#f51818; background-color:#faefef; font-weight: bold} pre code span.an /* Annotation */ {color:#e6ba7e} pre code span.at /* Attribute */ {color:#399ee6} pre code span.bn /* BaseN */ {color:#ff9940} pre code span.bu /* BuiltIn */ {color:#4cbf99} pre code span.cf /* ControlFlow */ {color:#fa8d3e; font-weight: bold} pre code span.ch /* Char */ {color:#4cbf99} pre code span.cn /* Constant */ {color:#a37acc} pre code span.co /* Comment */ {color:#607880; font-style: italic} pre code span.cv /* CommentVar */ {color:#a37acc} pre code span.do /* Documentation */ {color:#607880} pre code span.dt /* DataType */ {color:#fa8d3e} pre code span.dv /* DecVal */ {color:#ff9940} pre code span.er /* Error */ {color:#f51818; text-decoration: underline} pre code span.ex /* Extension */ {color:#399ee6; font-weight: bold} pre code span.fl /* Float */ {color:#ff9940} pre code span.fu /* Function */ {color:#f2ae49} pre code span.im /* Import */ {color:#86b300} pre code span.in /* Information */ {color:#ff9940} pre code span.kw /* Keyword */ {color:#fa8d3e; font-weight: bold} pre code span.op /* Operator */ {color:#ed9366} pre code span.ot /* Others */ {color:#55b4d4} pre code span.pp /* Preprocessor */ {color:#f07171} pre code span.re /* RegionMarker */ {color:#399ee6; background-color:#ddecf3} pre code span.sc /* SpecialChar */ {color:#4cbf99} pre code span.ss /* SpecialString */ {color:#4cbf99} pre code span.st /* String */ {color:#86b300} pre code span.va /* Variable */ {color:#55b4d4} pre code span.vs /* VerbatimString */ {color:#86b300} pre code span.wa /* Warning */ {color:#f07171} pkgdown/inst/highlight-styles/breeze-light.scss0000644000176200001440000000353214246155422021456 0ustar liggesuserspre {background-color: #ffffff;} pre code /* Normal */ {color:#1f1c1b} pre code span.al /* Alert */ {color:#bf0303; background-color:#f7e6e6; font-weight: bold} pre code span.an /* Annotation */ {color:#ca60ca} pre code span.at /* Attribute */ {color:#0057ae} pre code span.bn /* BaseN */ {color:#b08000} pre code span.bu /* BuiltIn */ {color:#644a9b; font-weight: bold} pre code span.cf /* ControlFlow */ {color:#1f1c1b; font-weight: bold} pre code span.ch /* Char */ {color:#924c9d} pre code span.cn /* Constant */ {color:#aa5500} pre code span.co /* Comment */ {color:#898887} pre code span.cv /* CommentVar */ {color:#0095ff} pre code span.do /* Documentation */ {color:#607880} pre code span.dt /* DataType */ {color:#0057ae} pre code span.dv /* DecVal */ {color:#b08000} pre code span.er /* Error */ {color:#bf0303; text-decoration: underline} pre code span.ex /* Extension */ {color:#0095ff; font-weight: bold} pre code span.fl /* Float */ {color:#b08000} pre code span.fu /* Function */ {color:#644a9b} pre code span.im /* Import */ {color:#ff5500} pre code span.in /* Information */ {color:#b08000} pre code span.kw /* Keyword */ {color:#1f1c1b; font-weight: bold} pre code span.op /* Operator */ {color:#ca60ca} pre code span.ot /* Others */ {color:#006e28} pre code span.pp /* Preprocessor */ {color:#006e28} pre code span.re /* RegionMarker */ {color:#0057ae; background-color:#e0e9f8} pre code span.sc /* SpecialChar */ {color:#3daee9} pre code span.ss /* SpecialString */ {color:#ff5500} pre code span.st /* String */ {color:#bf0303} pre code span.va /* Variable */ {color:#0057ae} pre code span.vs /* VerbatimString */ {color:#bf0303} pre code span.wa /* Warning */ {color:#bf0303} pkgdown/inst/highlight-styles/github-light.scss0000644000176200001440000000335514246155422021467 0ustar liggesuserspre {background-color: #ffffff;} pre code /* Normal */ {color:#24292e} pre code span.al /* Alert */ {color:#ff5555; font-weight: bold} pre code span.an /* Annotation */ {color:#6a737d} pre code span.at /* Attribute */ {color:#d73a49} pre code span.bn /* BaseN */ {color:#005cc5} pre code span.bu /* BuiltIn */ {color:#d73a49} pre code span.cf /* ControlFlow */ {color:#d73a49} pre code span.ch /* Char */ {color:#032f62} pre code span.cn /* Constant */ {color:#005cc5} pre code span.co /* Comment */ {color:#6a737d} pre code span.cv /* CommentVar */ {color:#6a737d} pre code span.do /* Documentation */ {color:#6a737d} pre code span.dt /* DataType */ {color:#d73a49} pre code span.dv /* DecVal */ {color:#005cc5} pre code span.er /* Error */ {color:#ff5555; text-decoration: underline} pre code span.ex /* Extension */ {color:#d73a49; font-weight: bold} pre code span.fl /* Float */ {color:#005cc5} pre code span.fu /* Function */ {color:#6f42c1} pre code span.im /* Import */ {color:#032f62} pre code span.in /* Information */ {color:#6a737d} pre code span.kw /* Keyword */ {color:#d73a49} pre code span.op /* Operator */ {color:#24292e} pre code span.ot /* Others */ {color:#6f42c1} pre code span.pp /* Preprocessor */ {color:#d73a49} pre code span.re /* RegionMarker */ {color:#6a737d} pre code span.sc /* SpecialChar */ {color:#005cc5} pre code span.ss /* SpecialString */ {color:#032f62} pre code span.st /* String */ {color:#032f62} pre code span.va /* Variable */ {color:#e36209} pre code span.vs /* VerbatimString */ {color:#032f62} pre code span.wa /* Warning */ {color:#ff5555} pkgdown/inst/highlight-styles/arrow-dark.scss0000644000176200001440000000347214247740574021162 0ustar liggesuserspre code /* Normal */ {color:#f8f8f2} pre code span.al /* Alert */ {color:#f07178; background-color:#2a0f15; font-weight: bold} pre code span.an /* Annotation */ {color:#d4d0ab} pre code span.at /* Attribute */ {color:#00e0e0} pre code span.bn /* BaseN */ {color:#d4d0ab} pre code span.bu /* BuiltIn */ {color:#abe338} pre code span.cf /* ControlFlow */ {color:#ffa07a; font-weight: bold} pre code span.ch /* Char */ {color:#abe338} pre code span.cn /* Constant */ {color:#ffd700} pre code span.co /* Comment */ {color:#f8f8f2; font-style: italic} pre code span.cv /* CommentVar */ {color:#ffd700} pre code span.do /* Documentation */ {color:#f8f8f2} pre code span.dt /* DataType */ {color:#ffa07a} pre code span.dv /* DecVal */ {color:#d4d0ab} pre code span.er /* Error */ {color:#f07178; text-decoration: underline} pre code span.ex /* Extension */ {color:#00e0e0; font-weight: bold} pre code span.fl /* Float */ {color:#d4d0ab} pre code span.fu /* Function */ {color:#ffa07a} pre code span.im /* Import */ {color:#abe338} pre code span.in /* Information */ {color:#d4d0ab} pre code span.kw /* Keyword */ {color:#ffa07a; font-weight: bold} pre code span.op /* Operator */ {color:#ffa07a} pre code span.ot /* Other */ {color:#00e0e0} pre code span.pp /* Preprocessor */ {color:#dcc6e0} pre code span.re /* RegionMarker */ {color:#00e0e0; background-color:#f8f8f2} pre code span.sc /* SpecialChar */ {color:#abe338} pre code span.ss /* SpecialString */ {color:#abe338} pre code span.st /* String */ {color:#abe338} pre code span.va /* Variable */ {color:#00e0e0} pre code span.vs /* VerbatimString */ {color:#abe338} pre code span.wa /* Warning */ {color:#dcc6e0} pkgdown/inst/highlight-styles/pygments.scss0000644000176200001440000000340714245770621020747 0ustar liggesuserspre code span.al /* Alert */ {color:#ff0000; font-weight: bold} pre code span.an /* Annotation */ {color:#60a0b0; font-weight: bold; font-style: italic} pre code span.at /* Attribute */ {color:#7d9029} pre code span.bn /* BaseN */ {color:#40a070} pre code span.bu /* BuiltIn */ {} pre code span.cf /* ControlFlow */ {color:#007020; font-weight: bold} pre code span.ch /* Char */ {color:#4070a0} pre code span.cn /* Constant */ {color:#880000} pre code span.co /* Comment */ {color:#60a0b0; font-style: italic} pre code span.cv /* CommentVar */ {color:#60a0b0; font-weight: bold; font-style: italic} pre code span.do /* Documentation */ {color:#ba2121; font-style: italic} pre code span.dt /* DataType */ {color:#902000} pre code span.dv /* DecVal */ {color:#40a070} pre code span.er /* Error */ {color:#ff0000; font-weight: bold} pre code span.ex /* Extension */ {} pre code span.fl /* Float */ {color:#40a070} pre code span.fu /* Function */ {color:#06287e} pre code span.im /* Import */ {} pre code span.in /* Information */ {color:#60a0b0; font-weight: bold; font-style: italic} pre code span.kw /* Keyword */ {color:#007020; font-weight: bold} pre code span.op /* Operator */ {color:#666666} pre code span.ot /* Other */ {color:#007020} pre code span.pp /* Preprocessor */ {color:#bc7a00} pre code span.sc /* SpecialChar */ {color:#4070a0} pre code span.ss /* SpecialString */ {color:#bb6688} pre code span.st /* String */ {color:#4070a0} pre code span.va /* Variable */ {color:#19177c} pre code span.vs /* VerbatimString */ {color:#4070a0} pre code span.wa /* Warning */ {color:#60a0b0; font-weight: bold; font-style: italic} pkgdown/inst/highlight-styles/solarized.scss0000644000176200001440000000354714247740574021110 0ustar liggesuserspre {background-color: #fdf6e3;} pre code /* Normal */ {color:#657b83} pre code span.al /* Alert */ {color:#d33682; font-weight: bold} pre code span.an /* Annotation */ {color:#268bd2} pre code span.at /* Attribute */ {color:#268bd2} pre code span.bn /* BaseN */ {color:#2aa198} pre code span.bu /* BuiltIn */ {color:#cb4b16} pre code span.cf /* ControlFlow */ {color:#859900; font-weight: bold} pre code span.ch /* Char */ {color:#2aa198} pre code span.cn /* Constant */ {color:#2aa198; font-weight: bold} pre code span.co /* Comment */ {color:#93a1a1; font-style: italic} pre code span.cv /* CommentVar */ {color:#2aa198} pre code span.do /* Documentation */ {color:#dc322f} pre code span.dt /* DataType */ {color:#b58900; font-weight: bold} pre code span.dv /* DecVal */ {color:#2aa198} pre code span.er /* Error */ {color:#dc322f; text-decoration: underline} pre code span.ex /* Extension */ {color:#268bd2; font-weight: bold} pre code span.fl /* Float */ {color:#2aa198} pre code span.fu /* Function */ {color:#268bd2} pre code span.im /* Import */ {color:#2aa198} pre code span.in /* Information */ {color:#b58900} pre code span.kw /* Keyword */ {color:#859900; font-weight: bold} pre code span.op /* Operator */ {color:#859900} pre code span.ot /* Others */ {color:#859900} pre code span.pp /* Preprocessor */ {color:#cb4b16} pre code span.re /* RegionMarker */ {color:#268bd2; background-color:#eee8d5} pre code span.sc /* SpecialChar */ {color:#dc322f} pre code span.ss /* SpecialString */ {color:#dc322f} pre code span.st /* String */ {color:#2aa198} pre code span.va /* Variable */ {color:#268bd2} pre code span.vs /* VerbatimString */ {color:#2aa198} pre code span.wa /* Warning */ {color:#cb4b16} pkgdown/inst/highlight-styles/a11y-light.scss0000644000176200001440000000321214247740574020761 0ustar liggesuserspre {background-color: #fefefe;} pre code /* Normal */ {color:#545454} pre code span.al /* Alert */ {color:#7928a1} pre code span.an /* Annotation */ {color:#696969} pre code span.at /* Attribute */ {color:#aa5d00} pre code span.bn /* BaseN */ {color:#7928a1} pre code span.bu /* BuiltIn */ {} pre code span.cf /* ControlFlow */ {color:#d91e18} pre code span.ch /* Char */ {color:#008000} pre code span.cn /* Constant */ {color:#d91e18} pre code span.co /* Comment */ {color:#696969} pre code span.cv /* CommentVar */ {color:#696969; font-style: italic} pre code span.do /* Documentation */ {color:#696969; font-style: italic} pre code span.dt /* DataType */ {color:#7928a1} pre code span.dv /* DecVal */ {color:#7928a1} pre code span.er /* Error */ {color:#7928a1} pre code span.ex /* Extension */ {} pre code span.fl /* Float */ {color:#aa5d00} pre code span.fu /* Function */ {color:#06287e} pre code span.im /* Import */ {} pre code span.in /* Information */ {color:#696969} pre code span.kw /* Keyword */ {color:#d91e18} pre code span.op /* Operator */ {color:#007faa} pre code span.ot /* Other */ {color:#d91e18} pre code span.pp /* Preprocessor */ {color:#7928a1} pre code span.sc /* SpecialChar */ {color:#007faa} pre code span.ss /* SpecialString */ {color:#008000} pre code span.st /* String */ {color:#008000} pre code span.va /* Variable */ {color:#aa5d00} pre code span.vs /* VerbatimString */ {color:#008000} pre code span.wa /* Warning */ {color:#696969; font-style: italic} pkgdown/inst/highlight-styles/kate.scss0000644000176200001440000000355214246155422020023 0ustar liggesuserspre {background-color: #ffffff; color: #1f1c1b;} pre code /* Normal */ {color:#1f1c1b} pre code span.al /* Alert */ {color:#bf0303; background-color:#f7e6e6; font-weight: bold} pre code span.an /* Annotation */ {color:#ca60ca} pre code span.at /* Attribute */ {color:#0057ae} pre code span.bn /* BaseN */ {color:#b08000} pre code span.bu /* BuiltIn */ {color:#644a9b; font-weight: bold} pre code span.cf /* ControlFlow */ {color:#1f1c1b; font-weight: bold} pre code span.ch /* Char */ {color:#924c9d} pre code span.cn /* Constant */ {color:#aa5500} pre code span.co /* Comment */ {color:#898887} pre code span.cv /* CommentVar */ {color:#0095ff} pre code span.do /* Documentation */ {color:#607880} pre code span.dt /* DataType */ {color:#0057ae} pre code span.dv /* DecVal */ {color:#b08000} pre code span.er /* Error */ {color:#bf0303; text-decoration: underline} pre code span.ex /* Extension */ {color:#0095ff; font-weight: bold} pre code span.fl /* Float */ {color:#b08000} pre code span.fu /* Function */ {color:#644a9b} pre code span.im /* Import */ {color:#ff5500} pre code span.in /* Information */ {color:#b08000} pre code span.kw /* Keyword */ {color:#1f1c1b; font-weight: bold} pre code span.op /* Operator */ {color:#1f1c1b} pre code span.ot /* Other */ {color:#006e28} pre code span.pp /* Preprocessor */ {color:#006e28} pre code span.re /* RegionMarker */ {color:#0057ae; background-color:#e0e9f8} pre code span.sc /* SpecialChar */ {color:#3daee9} pre code span.ss /* SpecialString */ {color:#ff5500} pre code span.st /* String */ {color:#bf0303} pre code span.va /* Variable */ {color:#0057ae} pre code span.vs /* VerbatimString */ {color:#bf0303} pre code span.wa /* Warning */ {color:#bf0303} pkgdown/inst/highlight-styles/solarized-light.scss0000644000176200001440000000354714134110660022173 0ustar liggesuserspre {background-color: #fdf6e3;} pre code /* Normal */ {color:#657b83} pre code span.al /* Alert */ {color:#d33682; font-weight: bold} pre code span.an /* Annotation */ {color:#268bd2} pre code span.at /* Attribute */ {color:#268bd2} pre code span.bn /* BaseN */ {color:#2aa198} pre code span.bu /* BuiltIn */ {color:#cb4b16} pre code span.cf /* ControlFlow */ {color:#859900; font-weight: bold} pre code span.ch /* Char */ {color:#2aa198} pre code span.cn /* Constant */ {color:#2aa198; font-weight: bold} pre code span.co /* Comment */ {color:#93a1a1; font-style: italic} pre code span.cv /* CommentVar */ {color:#2aa198} pre code span.do /* Documentation */ {color:#dc322f} pre code span.dt /* DataType */ {color:#b58900; font-weight: bold} pre code span.dv /* DecVal */ {color:#2aa198} pre code span.er /* Error */ {color:#dc322f; text-decoration: underline} pre code span.ex /* Extension */ {color:#268bd2; font-weight: bold} pre code span.fl /* Float */ {color:#2aa198} pre code span.fu /* Function */ {color:#268bd2} pre code span.im /* Import */ {color:#2aa198} pre code span.in /* Information */ {color:#b58900} pre code span.kw /* Keyword */ {color:#859900; font-weight: bold} pre code span.op /* Operator */ {color:#859900} pre code span.ot /* Others */ {color:#859900} pre code span.pp /* Preprocessor */ {color:#cb4b16} pre code span.re /* RegionMarker */ {color:#268bd2; background-color:#eee8d5} pre code span.sc /* SpecialChar */ {color:#dc322f} pre code span.ss /* SpecialString */ {color:#dc322f} pre code span.st /* String */ {color:#2aa198} pre code span.va /* Variable */ {color:#268bd2} pre code span.vs /* VerbatimString */ {color:#2aa198} pre code span.wa /* Warning */ {color:#cb4b16} pkgdown/inst/highlight-styles/vim-dark.scss0000644000176200001440000000355514246155422020614 0ustar liggesuserspre {background-color: #000000;} pre code /* Normal */ {color:#b2b2b2} pre code span.al /* Alert */ {color:#ff0000; background-color:#3f0000; font-weight: bold} pre code span.an /* Annotation */ {color:#ff00ff} pre code span.at /* Attribute */ {color:#ffffaf} pre code span.bn /* BaseN */ {color:#ff8b8b} pre code span.bu /* BuiltIn */ {color:#87ffaf; font-weight: bold} pre code span.cf /* ControlFlow */ {color:#ffff54; font-weight: bold} pre code span.ch /* Char */ {color:#ff5454} pre code span.cn /* Constant */ {color:#af7f00; font-weight: bold} pre code span.co /* Comment */ {color:#54ffff} pre code span.cv /* CommentVar */ {color:#0095ff} pre code span.do /* Documentation */ {color:#e0ffff} pre code span.dt /* DataType */ {color:#ffff54} pre code span.dv /* DecVal */ {color:#ff8b8b} pre code span.er /* Error */ {color:#ff5500; text-decoration: underline} pre code span.ex /* Extension */ {color:#0095ff; font-weight: bold} pre code span.fl /* Float */ {color:#ff8b8b} pre code span.fu /* Function */ {color:#cd00cd} pre code span.im /* Import */ {color:#ff54ff} pre code span.in /* Information */ {color:#ffaa00} pre code span.kw /* Keyword */ {color:#5fd7ff; font-weight: bold} pre code span.op /* Operator */ {color:#b2b2b2} pre code span.ot /* Others */ {color:#54ff54} pre code span.pp /* Preprocessor */ {color:#87ffaf} pre code span.re /* RegionMarker */ {color:#0095ff; background-color:#22226d} pre code span.sc /* SpecialChar */ {color:#0095ff} pre code span.ss /* SpecialString */ {color:#ff5500} pre code span.st /* String */ {color:#ff54ff} pre code span.va /* Variable */ {color:#06989a} pre code span.vs /* VerbatimString */ {color:#ff54ff} pre code span.wa /* Warning */ {color:#ff0000} pkgdown/inst/highlight-styles/ayu-dark.scss0000644000176200001440000000353314246155422020613 0ustar liggesuserspre {background-color: #0a0e14;} pre code /* Normal */ {color:#b3b1ad} pre code span.al /* Alert */ {color:#ff3333; background-color:#2a0f15; font-weight: bold} pre code span.an /* Annotation */ {color:#e6b673} pre code span.at /* Attribute */ {color:#59c2ff} pre code span.bn /* BaseN */ {color:#e6b450} pre code span.bu /* BuiltIn */ {color:#95e6cb} pre code span.cf /* ControlFlow */ {color:#ff8f40; font-weight: bold} pre code span.ch /* Char */ {color:#95e6cb} pre code span.cn /* Constant */ {color:#ffee99} pre code span.co /* Comment */ {color:#626a73; font-style: italic} pre code span.cv /* CommentVar */ {color:#ffee99} pre code span.do /* Documentation */ {color:#626a73} pre code span.dt /* DataType */ {color:#ff8f40} pre code span.dv /* DecVal */ {color:#e6b450} pre code span.er /* Error */ {color:#ff3333; text-decoration: underline} pre code span.ex /* Extension */ {color:#59c2ff; font-weight: bold} pre code span.fl /* Float */ {color:#e6b450} pre code span.fu /* Function */ {color:#ffb454} pre code span.im /* Import */ {color:#c2d94c} pre code span.in /* Information */ {color:#e6b450} pre code span.kw /* Keyword */ {color:#ff8f40; font-weight: bold} pre code span.op /* Operator */ {color:#f29668} pre code span.ot /* Others */ {color:#39bae6} pre code span.pp /* Preprocessor */ {color:#f07178} pre code span.re /* RegionMarker */ {color:#59c2ff; background-color:#173649} pre code span.sc /* SpecialChar */ {color:#95e6cb} pre code span.ss /* SpecialString */ {color:#95e6cb} pre code span.st /* String */ {color:#c2d94c} pre code span.va /* Variable */ {color:#39bae6} pre code span.vs /* VerbatimString */ {color:#c2d94c} pre code span.wa /* Warning */ {color:#f07178} pkgdown/inst/highlight-styles/breeze-dark.scss0000644000176200001440000000353214246155422021270 0ustar liggesuserspre {background-color: #232629;} pre code /* Normal */ {color:#cfcfc2} pre code span.al /* Alert */ {color:#95da4c; background-color:#4d1f24; font-weight: bold} pre code span.an /* Annotation */ {color:#3f8058} pre code span.at /* Attribute */ {color:#2980b9} pre code span.bn /* BaseN */ {color:#f67400} pre code span.bu /* BuiltIn */ {color:#7f8c8d} pre code span.cf /* ControlFlow */ {color:#fdbc4b; font-weight: bold} pre code span.ch /* Char */ {color:#3daee9} pre code span.cn /* Constant */ {color:#27aeae; font-weight: bold} pre code span.co /* Comment */ {color:#7a7c7d} pre code span.cv /* CommentVar */ {color:#7f8c8d} pre code span.do /* Documentation */ {color:#a43340} pre code span.dt /* DataType */ {color:#2980b9} pre code span.dv /* DecVal */ {color:#f67400} pre code span.er /* Error */ {color:#da4453; text-decoration: underline} pre code span.ex /* Extension */ {color:#0099ff; font-weight: bold} pre code span.fl /* Float */ {color:#f67400} pre code span.fu /* Function */ {color:#8e44ad} pre code span.im /* Import */ {color:#27ae60} pre code span.in /* Information */ {color:#c45b00} pre code span.kw /* Keyword */ {color:#cfcfc2; font-weight: bold} pre code span.op /* Operator */ {color:#3f8058} pre code span.ot /* Others */ {color:#27ae60} pre code span.pp /* Preprocessor */ {color:#27ae60} pre code span.re /* RegionMarker */ {color:#2980b9; background-color:#153042} pre code span.sc /* SpecialChar */ {color:#3daee9} pre code span.ss /* SpecialString */ {color:#da4453} pre code span.st /* String */ {color:#f44f4f} pre code span.va /* Variable */ {color:#27aeae} pre code span.vs /* VerbatimString */ {color:#da4453} pre code span.wa /* Warning */ {color:#da4453} pkgdown/inst/highlight-styles/monochrome-light.scss0000644000176200001440000000346314247740574022364 0ustar liggesuserspre {background-color: #ffffff; color: #000000;} pre code /* Normal */ {color:#000000} pre code span.al /* Alert */ {color:#000000} pre code span.an /* Annotation */ {color:#000000; font-style: italic} pre code span.at /* Attribute */ {color:#000000} pre code span.bn /* BaseN */ {color:#000000} pre code span.bu /* BuiltIn */ {color:#000000} pre code span.cf /* ControlFlow */ {color:#000000} pre code span.ch /* Char */ {color:#000000} pre code span.cn /* Constant */ {color:#000000} pre code span.co /* Comment */ {color:#000000; font-style: italic} pre code span.cv /* CommentVar */ {color:#000000; font-style: italic} pre code span.do /* Documentation */ {color:#000000; font-style: italic} pre code span.dt /* DataType */ {color:#000000} pre code span.dv /* DecVal */ {color:#000000} pre code span.er /* Error */ {color:#000000} pre code span.ex /* Extension */ {color:#000000} pre code span.fl /* Float */ {color:#000000} pre code span.fu /* Function */ {color:#000000} pre code span.im /* Import */ {color:#000000} pre code span.in /* Information */ {color:#000000; font-style: italic} pre code span.kw /* Keyword */ {color:#000000} pre code span.op /* Operator */ {color:#000000} pre code span.ot /* Other */ {color:#000000} pre code span.pp /* Preprocessor */ {color:#000000} pre code span.re /* RegionMarker */ {color:#000000} pre code span.sc /* SpecialChar */ {color:#000000} pre code span.ss /* SpecialString */ {color:#000000} pre code span.st /* String */ {color:#000000} pre code span.va /* Variable */ {color:#000000} pre code span.vs /* VerbatimString */ {color:#000000} pre code span.wa /* Warning */ {color:#000000; font-style: italic} pkgdown/inst/highlight-styles/oblivion.scss0000644000176200001440000000355514246155422020723 0ustar liggesuserspre {background-color: #201f1f;} pre code /* Normal */ {color:#d3d7c1} pre code span.al /* Alert */ {color:#e85848; background-color:#451e1a; font-weight: bold} pre code span.an /* Annotation */ {color:#ad7fa8} pre code span.at /* Attribute */ {color:#ad7fa8} pre code span.bn /* BaseN */ {color:#edd400} pre code span.bu /* BuiltIn */ {color:#729fcf} pre code span.cf /* ControlFlow */ {color:#ffffff; font-weight: bold} pre code span.ch /* Char */ {color:#ce5c00} pre code span.cn /* Constant */ {color:#edd400; font-weight: bold} pre code span.co /* Comment */ {color:#30a100} pre code span.cv /* CommentVar */ {color:#ad7fa8} pre code span.do /* Documentation */ {color:#4e9a06} pre code span.dt /* DataType */ {color:#508ed8} pre code span.dv /* DecVal */ {color:#edd400} pre code span.er /* Error */ {color:#e85848; text-decoration: underline} pre code span.ex /* Extension */ {color:#508ed8; font-weight: bold} pre code span.fl /* Float */ {color:#ce5c00} pre code span.fu /* Function */ {color:#729fcf; font-weight: bold} pre code span.im /* Import */ {color:#ad7fa8} pre code span.in /* Information */ {color:#c0a25f} pre code span.kw /* Keyword */ {color:#ffffff; font-weight: bold} pre code span.op /* Operator */ {color:#eeeeec} pre code span.ot /* Others */ {color:#edd400} pre code span.pp /* Preprocessor */ {color:#ad7fa8} pre code span.re /* RegionMarker */ {color:#508ed8; background-color:#1c2c3f} pre code span.sc /* SpecialChar */ {color:#ce5c00} pre code span.ss /* SpecialString */ {color:#fce94f} pre code span.st /* String */ {color:#edd400} pre code span.va /* Variable */ {color:#ce5c00} pre code span.vs /* VerbatimString */ {color:#c4a000} pre code span.wa /* Warning */ {color:#e85848} pkgdown/inst/highlight-styles/github-dark.scss0000644000176200001440000000335514246155422021301 0ustar liggesuserspre {background-color: #24292e;} pre code /* Normal */ {color:#e1e4e8} pre code span.al /* Alert */ {color:#ff5555; font-weight: bold} pre code span.an /* Annotation */ {color:#6a737d} pre code span.at /* Attribute */ {color:#f97583} pre code span.bn /* BaseN */ {color:#79b8ff} pre code span.bu /* BuiltIn */ {color:#f97583} pre code span.cf /* ControlFlow */ {color:#f97583} pre code span.ch /* Char */ {color:#9ecbff} pre code span.cn /* Constant */ {color:#79b8ff} pre code span.co /* Comment */ {color:#6a737d} pre code span.cv /* CommentVar */ {color:#6a737d} pre code span.do /* Documentation */ {color:#6a737d} pre code span.dt /* DataType */ {color:#f97583} pre code span.dv /* DecVal */ {color:#79b8ff} pre code span.er /* Error */ {color:#ff5555; text-decoration: underline} pre code span.ex /* Extension */ {color:#f97583; font-weight: bold} pre code span.fl /* Float */ {color:#79b8ff} pre code span.fu /* Function */ {color:#b392f0} pre code span.im /* Import */ {color:#9ecbff} pre code span.in /* Information */ {color:#6a737d} pre code span.kw /* Keyword */ {color:#f97583} pre code span.op /* Operator */ {color:#e1e4e8} pre code span.ot /* Others */ {color:#b392f0} pre code span.pp /* Preprocessor */ {color:#f97583} pre code span.re /* RegionMarker */ {color:#6a737d} pre code span.sc /* SpecialChar */ {color:#79b8ff} pre code span.ss /* SpecialString */ {color:#9ecbff} pre code span.st /* String */ {color:#9ecbff} pre code span.va /* Variable */ {color:#ffab70} pre code span.vs /* VerbatimString */ {color:#9ecbff} pre code span.wa /* Warning */ {color:#ff5555} pkgdown/inst/highlight-styles/printing.scss0000644000176200001440000000350714246155422020731 0ustar liggesuserspre {background-color: #ffffff;} pre code /* Normal */ {color:#000000} pre code span.al /* Alert */ {color:#bf0303; background-color:#f7e6e6; font-weight: bold} pre code span.an /* Annotation */ {color:#ca60ca} pre code span.at /* Attribute */ {color:#0057ae} pre code span.bn /* BaseN */ {color:#b08000} pre code span.bu /* BuiltIn */ {color:#644a9b} pre code span.cf /* ControlFlow */ {color:#000000; font-weight: bold} pre code span.ch /* Char */ {color:#924c9d} pre code span.cn /* Constant */ {color:#aa5500} pre code span.co /* Comment */ {color:#898887} pre code span.cv /* CommentVar */ {color:#0095ff} pre code span.do /* Documentation */ {color:#607880} pre code span.dt /* DataType */ {color:#0057ae} pre code span.dv /* DecVal */ {color:#b08000} pre code span.er /* Error */ {color:#bf0303; text-decoration: underline} pre code span.ex /* Extension */ {color:#0095ff; font-weight: bold} pre code span.fl /* Float */ {color:#b08000} pre code span.fu /* Function */ {color:#644a9b} pre code span.im /* Import */ {color:#644a9b} pre code span.in /* Information */ {color:#b08000} pre code span.kw /* Keyword */ {color:#000000; font-weight: bold} pre code span.op /* Operator */ {color:#000000} pre code span.ot /* Others */ {color:#006e28} pre code span.pp /* Preprocessor */ {color:#006e28} pre code span.re /* RegionMarker */ {color:#0057ae; background-color:#e0e9f8} pre code span.sc /* SpecialChar */ {color:#ff5500} pre code span.ss /* SpecialString */ {color:#ff5500} pre code span.st /* String */ {color:#bf0303} pre code span.va /* Variable */ {color:#0057ae} pre code span.vs /* VerbatimString */ {color:#bf0303} pre code span.wa /* Warning */ {color:#bf0303} pkgdown/inst/highlight-styles/gruvbox-dark.scss0000644000176200001440000000361614246155422021513 0ustar liggesuserspre {background-color: #282828;} pre code /* Normal */ {color:#ebdbb2} pre code span.al /* Alert */ {color:#282828; background-color:#cc241d; font-weight: bold} pre code span.an /* Annotation */ {color:#98971a} pre code span.at /* Attribute */ {color:#d79921} pre code span.bn /* BaseN */ {color:#f67400} pre code span.bu /* BuiltIn */ {color:#d65d0e} pre code span.cf /* ControlFlow */ {color:#cc241d; font-weight: bold} pre code span.ch /* Char */ {color:#b16286} pre code span.cn /* Constant */ {color:#b16286; font-weight: bold} pre code span.co /* Comment */ {color:#928374} pre code span.cv /* CommentVar */ {color:#928374} pre code span.do /* Documentation */ {color:#98971a} pre code span.dt /* DataType */ {color:#d79921} pre code span.dv /* DecVal */ {color:#f67400} pre code span.er /* Error */ {color:#cc241d; text-decoration: underline} pre code span.ex /* Extension */ {color:#689d6a; font-weight: bold} pre code span.fl /* Float */ {color:#f67400} pre code span.fu /* Function */ {color:#689d6a} pre code span.im /* Import */ {color:#689d6a} pre code span.in /* Information */ {color:#282828; background-color:#83a598} pre code span.kw /* Keyword */ {color:#ebdbb2; font-weight: bold} pre code span.op /* Operator */ {color:#ebdbb2} pre code span.ot /* Others */ {color:#689d6a} pre code span.pp /* Preprocessor */ {color:#d65d0e} pre code span.re /* RegionMarker */ {color:#928374; background-color:#1d2021} pre code span.sc /* SpecialChar */ {color:#b16286} pre code span.ss /* SpecialString */ {color:#98971a} pre code span.st /* String */ {color:#98971a} pre code span.va /* Variable */ {color:#458588} pre code span.vs /* VerbatimString */ {color:#98971a} pre code span.wa /* Warning */ {color:#282828; background-color:#fabd2f} pkgdown/inst/highlight-styles/monochrome-dark.scss0000644000176200001440000000346314247740574022176 0ustar liggesuserspre {background-color: #000000; color: #FFFFFF;} pre code /* Normal */ {color:#FFFFFF} pre code span.al /* Alert */ {color:#FFFFFF} pre code span.an /* Annotation */ {color:#FFFFFF; font-style: italic} pre code span.at /* Attribute */ {color:#FFFFFF} pre code span.bn /* BaseN */ {color:#FFFFFF} pre code span.bu /* BuiltIn */ {color:#FFFFFF} pre code span.cf /* ControlFlow */ {color:#FFFFFF} pre code span.ch /* Char */ {color:#FFFFFF} pre code span.cn /* Constant */ {color:#FFFFFF} pre code span.co /* Comment */ {color:#FFFFFF; font-style: italic} pre code span.cv /* CommentVar */ {color:#FFFFFF; font-style: italic} pre code span.do /* Documentation */ {color:#FFFFFF; font-style: italic} pre code span.dt /* DataType */ {color:#FFFFFF} pre code span.dv /* DecVal */ {color:#FFFFFF} pre code span.er /* Error */ {color:#FFFFFF} pre code span.ex /* Extension */ {color:#FFFFFF} pre code span.fl /* Float */ {color:#FFFFFF} pre code span.fu /* Function */ {color:#FFFFFF} pre code span.im /* Import */ {color:#FFFFFF} pre code span.in /* Information */ {color:#FFFFFF; font-style: italic} pre code span.kw /* Keyword */ {color:#FFFFFF} pre code span.op /* Operator */ {color:#FFFFFF} pre code span.ot /* Other */ {color:#FFFFFF} pre code span.pp /* Preprocessor */ {color:#FFFFFF} pre code span.re /* RegionMarker */ {color:#FFFFFF} pre code span.sc /* SpecialChar */ {color:#FFFFFF} pre code span.ss /* SpecialString */ {color:#FFFFFF} pre code span.st /* String */ {color:#FFFFFF} pre code span.va /* Variable */ {color:#FFFFFF} pre code span.vs /* VerbatimString */ {color:#FFFFFF} pre code span.wa /* Warning */ {color:#FFFFFF; font-style: italic} pkgdown/inst/highlight-styles/atom-one-light.scss0000644000176200001440000000345014245770621021723 0ustar liggesuserspre code /* Normal */ {color:#383a42} pre code span.al /* Alert */ {color:#95da4c; background-color:#4d1f24; font-weight: bold} pre code span.an /* Annotation */ {color:#50a14f} pre code span.at /* Attribute */ {color:#a626a4} pre code span.bn /* BaseN */ {color:#986801} pre code span.bu /* BuiltIn */ {color:#a626a4} pre code span.cf /* ControlFlow */ {color:#a626a4} pre code span.ch /* Char */ {color:#50a14f} pre code span.cn /* Constant */ {color:#986801} pre code span.co /* Comment */ {color:#a0a1a7; font-style: italic} pre code span.cv /* CommentVar */ {color:#e45649; font-style: italic} pre code span.do /* Documentation */ {color:#e45649} pre code span.dt /* DataType */ {color:#a626a4} pre code span.dv /* DecVal */ {color:#986801} pre code span.er /* Error */ {color:#f44747; text-decoration: underline} pre code span.ex /* Extension */ {color:#4078f2; font-weight: bold} pre code span.fl /* Float */ {color:#986801} pre code span.fu /* Function */ {color:#4078f2} pre code span.im /* Import */ {color:#50a14f} pre code span.in /* Information */ {color:#c45b00} pre code span.kw /* Keyword */ {color:#a626a4} pre code span.op /* Operator */ {color:#a626a4} pre code span.ot /* Others */ {color:#27ae60} pre code span.pp /* Preprocessor */ {color:#a626a4} pre code span.re /* RegionMarker */ {color:#2980b9; background-color:#153042} pre code span.sc /* SpecialChar */ {color:#0184bc} pre code span.ss /* SpecialString */ {color:#da4453} pre code span.st /* String */ {color:#50a14f} pre code span.va /* Variable */ {color:#e45649} pre code span.vs /* VerbatimString */ {color:#da4453} pre code span.wa /* Warning */ {color:#da4453} pkgdown/inst/highlight-styles/monokai.scss0000644000176200001440000000340114247740574020536 0ustar liggesuserspre {background-color: #2e3440;} pre code /* Normal */ {color:#f8f8f2} pre code span.al /* Alert */ {color:#ff5555; font-weight: bold} pre code span.an /* Annotation */ {color:#75715e} pre code span.at /* Attribute */ {color:#f92672} pre code span.bn /* BaseN */ {color:#ae81ff} pre code span.bu /* BuiltIn */ {color:#66D9EF} pre code span.cf /* ControlFlow */ {color:#f92672} pre code span.ch /* Char */ {color:#e6db74} pre code span.cn /* Constant */ {color:#ae81ff} pre code span.co /* Comment */ {color:#75715e} pre code span.cv /* CommentVar */ {color:#75715e} pre code span.do /* Documentation */ {color:#75715e} pre code span.dt /* DataType */ {color:#66d9ef; font-style: italic} pre code span.dv /* DecVal */ {color:#ae81ff} pre code span.er /* Error */ {color:#ff5555; text-decoration: underline} pre code span.ex /* Extension */ {color:#a6e22e; font-weight: bold} pre code span.fl /* Float */ {color:#ae81ff} pre code span.fu /* Function */ {color:#a6e22e} pre code span.im /* Import */ {color:#f92672} pre code span.in /* Information */ {color:#f1fa8c} pre code span.kw /* Keyword */ {color:#f92672} pre code span.op /* Operator */ {color:#f8f8f2} pre code span.ot /* Others */ {color:#a6e22e} pre code span.pp /* Preprocessor */ {color:#f92672} pre code span.re /* RegionMarker */ {color:#75715e} pre code span.sc /* SpecialChar */ {color:#ae81ff} pre code span.ss /* SpecialString */ {color:#e6db74} pre code span.st /* String */ {color:#e6db74} pre code span.va /* Variable */ {color:#f8f8f2} pre code span.vs /* VerbatimString */ {color:#e6db74} pre code span.wa /* Warning */ {color:#ff5555} pkgdown/inst/highlight-styles/breezedark.scss0000644000176200001440000000355214246155422021215 0ustar liggesuserspre {background-color: #232629; color: #cfcfc2;} pre code /* Normal */ {color:#cfcfc2} pre code span.al /* Alert */ {color:#95da4c; background-color:#4d1f24; font-weight: bold} pre code span.an /* Annotation */ {color:#3f8058} pre code span.at /* Attribute */ {color:#2980b9} pre code span.bn /* BaseN */ {color:#f67400} pre code span.bu /* BuiltIn */ {color:#7f8c8d} pre code span.cf /* ControlFlow */ {color:#fdbc4b; font-weight: bold} pre code span.ch /* Char */ {color:#3daee9} pre code span.cn /* Constant */ {color:#27aeae; font-weight: bold} pre code span.co /* Comment */ {color:#7a7c7d} pre code span.cv /* CommentVar */ {color:#7f8c8d} pre code span.do /* Documentation */ {color:#a43340} pre code span.dt /* DataType */ {color:#2980b9} pre code span.dv /* DecVal */ {color:#f67400} pre code span.er /* Error */ {color:#da4453; text-decoration: underline} pre code span.ex /* Extension */ {color:#0099ff; font-weight: bold} pre code span.fl /* Float */ {color:#f67400} pre code span.fu /* Function */ {color:#8e44ad} pre code span.im /* Import */ {color:#27ae60} pre code span.in /* Information */ {color:#c45b00} pre code span.kw /* Keyword */ {color:#cfcfc2; font-weight: bold} pre code span.op /* Operator */ {color:#cfcfc2} pre code span.ot /* Other */ {color:#27ae60} pre code span.pp /* Preprocessor */ {color:#27ae60} pre code span.re /* RegionMarker */ {color:#2980b9; background-color:#153042} pre code span.sc /* SpecialChar */ {color:#3daee9} pre code span.ss /* SpecialString */ {color:#da4453} pre code span.st /* String */ {color:#f44f4f} pre code span.va /* Variable */ {color:#27aeae} pre code span.vs /* VerbatimString */ {color:#da4453} pre code span.wa /* Warning */ {color:#da4453} pkgdown/inst/highlight-styles/dracula.scss0000644000176200001440000000340114246155422020503 0ustar liggesuserspre {background-color: #282a36;} pre code /* Normal */ {color:#f8f8f2} pre code span.al /* Alert */ {color:#ff5555; font-weight: bold} pre code span.an /* Annotation */ {color:#ff79c6} pre code span.at /* Attribute */ {color:#ff79c6} pre code span.bn /* BaseN */ {color:#bd93f9} pre code span.bu /* BuiltIn */ {color:#8be9fd} pre code span.cf /* ControlFlow */ {color:#ff79c6} pre code span.ch /* Char */ {color:#f1fa8c} pre code span.cn /* Constant */ {color:#bd93f9; font-weight: bold} pre code span.co /* Comment */ {color:#6272a4} pre code span.cv /* CommentVar */ {color:#8be9fd} pre code span.do /* Documentation */ {color:#ffb86c} pre code span.dt /* DataType */ {color:#8be9fd; font-style: italic} pre code span.dv /* DecVal */ {color:#bd93f9} pre code span.er /* Error */ {color:#ff5555; text-decoration: underline} pre code span.ex /* Extension */ {color:#8be9fd} pre code span.fl /* Float */ {color:#bd93f9} pre code span.fu /* Function */ {color:#50fa7b} pre code span.im /* Import */ {color:#ff79c6} pre code span.in /* Information */ {color:#f1fa8c} pre code span.kw /* Keyword */ {color:#ff79c6} pre code span.op /* Operator */ {color:#f8f8f2} pre code span.ot /* Others */ {color:#50fa7b} pre code span.pp /* Preprocessor */ {color:#ff79c6} pre code span.re /* RegionMarker */ {color:#8be9fd} pre code span.sc /* SpecialChar */ {color:#ff79c6} pre code span.ss /* SpecialString */ {color:#f1fa8c} pre code span.st /* String */ {color:#f1fa8c} pre code span.va /* Variable */ {color:#8be9fd} pre code span.vs /* VerbatimString */ {color:#f1fa8c} pre code span.wa /* Warning */ {color:#ff5555} pkgdown/inst/highlight-styles/a11y-dark.scss0000644000176200001440000000321214247740574020573 0ustar liggesuserspre {background-color: #2b2b2b;} pre code /* Normal */ {color:#f8f8f2} pre code span.al /* Alert */ {color:#dcc6e0} pre code span.an /* Annotation */ {color:#d4d0ab} pre code span.at /* Attribute */ {color:#ffd700} pre code span.bn /* BaseN */ {color:#dcc6e0} pre code span.bu /* BuiltIn */ {} pre code span.cf /* ControlFlow */ {color:#ffa07a} pre code span.ch /* Char */ {color:#abe338} pre code span.cn /* Constant */ {color:#ffa07a} pre code span.co /* Comment */ {color:#d4d0ab} pre code span.cv /* CommentVar */ {color:#d4d0ab; font-style: italic} pre code span.do /* Documentation */ {color:#d4d0ab; font-style: italic} pre code span.dt /* DataType */ {color:#dcc6e0} pre code span.dv /* DecVal */ {color:#dcc6e0} pre code span.er /* Error */ {color:#dcc6e0} pre code span.ex /* Extension */ {} pre code span.fl /* Float */ {color:#f5ab35} pre code span.fu /* Function */ {color:#ffd700} pre code span.im /* Import */ {} pre code span.in /* Information */ {color:#d4d0ab} pre code span.kw /* Keyword */ {color:#ffa07a} pre code span.op /* Operator */ {color:#00e0e0} pre code span.ot /* Other */ {color:#ffa07a} pre code span.pp /* Preprocessor */ {color:#dcc6e0} pre code span.sc /* SpecialChar */ {color:#00e0e0} pre code span.ss /* SpecialString */ {color:#abe338} pre code span.st /* String */ {color:#abe338} pre code span.va /* Variable */ {color:#f5ab35} pre code span.vs /* VerbatimString */ {color:#abe338} pre code span.wa /* Warning */ {color:#d4d0ab; font-style: italic} pkgdown/inst/highlight-styles/nord.scss0000644000176200001440000000355614246155422020045 0ustar liggesuserspre {background-color: #2e3440;} pre code /* Normal */ {color:#d8dee9} pre code span.al /* Alert */ {color:#bf616a; background-color:#3b4252; font-weight: bold} pre code span.an /* Annotation */ {color:#d08770} pre code span.at /* Attribute */ {color:#8fbcbb} pre code span.bn /* BaseN */ {color:#b48ead} pre code span.bu /* BuiltIn */ {color:#88c0d0; font-style: italic} pre code span.cf /* ControlFlow */ {color:#81a1c1; font-weight: bold} pre code span.ch /* Char */ {color:#ebcb8b} pre code span.cn /* Constant */ {color:#eceff4; font-weight: bold} pre code span.co /* Comment */ {color:#616e88} pre code span.cv /* CommentVar */ {color:#e5e9f0} pre code span.do /* Documentation */ {color:#5e81ac} pre code span.dt /* DataType */ {color:#81a1c1} pre code span.dv /* DecVal */ {color:#b48ead} pre code span.er /* Error */ {color:#bf616a; text-decoration: underline} pre code span.ex /* Extension */ {color:#8fbcbb; font-weight: bold} pre code span.fl /* Float */ {color:#b48ead} pre code span.fu /* Function */ {color:#88c0d0} pre code span.im /* Import */ {color:#a3be8c} pre code span.in /* Information */ {color:#ebcb8b} pre code span.kw /* Keyword */ {color:#81a1c1; font-weight: bold} pre code span.op /* Operator */ {color:#81a1c1} pre code span.ot /* Others */ {color:#8fbcbb} pre code span.pp /* Preprocessor */ {color:#5e81ac} pre code span.re /* RegionMarker */ {color:#88c0d0; background-color:#3b4252} pre code span.sc /* SpecialChar */ {color:#ebcb8b} pre code span.ss /* SpecialString */ {color:#d08770} pre code span.st /* String */ {color:#a3be8c} pre code span.va /* Variable */ {color:#5e81ac} pre code span.vs /* VerbatimString */ {color:#a3be8c} pre code span.wa /* Warning */ {color:#bf616a} pkgdown/inst/highlight-styles/solarized-dark.scss0000644000176200001440000000343314134110660021777 0ustar liggesuserspre {background-color: #002b36;} pre code /* Normal */ {color:#839496} pre code span.al /* Alert */ {color:#d33682; font-weight: bold} pre code span.an /* Annotation */ {color:#268bd2} pre code span.at /* Attribute */ {color:#268bd2} pre code span.bn /* BaseN */ {color:#2aa198} pre code span.bu /* BuiltIn */ {color:#cb4b16} pre code span.cf /* ControlFlow */ {color:#859900} pre code span.ch /* Char */ {color:#2aa198} pre code span.cn /* Constant */ {color:#2aa198; font-weight: bold} pre code span.co /* Comment */ {color:#586e75; font-style: italic} pre code span.cv /* CommentVar */ {color:#2aa198} pre code span.do /* Documentation */ {color:#dc322f} pre code span.dt /* DataType */ {color:#b58900} pre code span.dv /* DecVal */ {color:#2aa198} pre code span.er /* Error */ {color:#dc322f; text-decoration: underline} pre code span.ex /* Extension */ {color:#268bd2} pre code span.fl /* Float */ {color:#2aa198} pre code span.fu /* Function */ {color:#268bd2} pre code span.im /* Import */ {color:#2aa198} pre code span.in /* Information */ {color:#b58900} pre code span.kw /* Keyword */ {color:#859900} pre code span.op /* Operator */ {color:#859900} pre code span.ot /* Others */ {color:#859900} pre code span.pp /* Preprocessor */ {color:#cb4b16} pre code span.re /* RegionMarker */ {color:#268bd2; background-color:#073642} pre code span.sc /* SpecialChar */ {color:#dc322f} pre code span.ss /* SpecialString */ {color:#dc322f} pre code span.st /* String */ {color:#2aa198} pre code span.va /* Variable */ {color:#268bd2} pre code span.vs /* VerbatimString */ {color:#2aa198} pre code span.wa /* Warning */ {color:#cb4b16} pkgdown/inst/highlight-styles/atom-one-dark.scss0000644000176200001440000000345014245770621021535 0ustar liggesuserspre code /* Normal */ {color:#abb2bf} pre code span.al /* Alert */ {color:#95da4c; background-color:#4d1f24; font-weight: bold} pre code span.an /* Annotation */ {color:#98c379} pre code span.at /* Attribute */ {color:#c678dd} pre code span.bn /* BaseN */ {color:#d19a66} pre code span.bu /* BuiltIn */ {color:#c678dd} pre code span.cf /* ControlFlow */ {color:#c678dd} pre code span.ch /* Char */ {color:#98c379} pre code span.cn /* Constant */ {color:#d19a66} pre code span.co /* Comment */ {color:#5c6370; font-style: italic} pre code span.cv /* CommentVar */ {color:#e06c75; font-style: italic} pre code span.do /* Documentation */ {color:#a43340} pre code span.dt /* DataType */ {color:#c678dd} pre code span.dv /* DecVal */ {color:#d19a66} pre code span.er /* Error */ {color:#f44747; text-decoration: underline} pre code span.ex /* Extension */ {color:#61afef; font-weight: bold} pre code span.fl /* Float */ {color:#d19a66} pre code span.fu /* Function */ {color:#61afef} pre code span.im /* Import */ {color:#98c379} pre code span.in /* Information */ {color:#c45b00} pre code span.kw /* Keyword */ {color:#c678dd} pre code span.op /* Operator */ {color:#c678dd} pre code span.ot /* Others */ {color:#27ae60} pre code span.pp /* Preprocessor */ {color:#c678dd} pre code span.re /* RegionMarker */ {color:#2980b9; background-color:#153042} pre code span.sc /* SpecialChar */ {color:#56b6c2} pre code span.ss /* SpecialString */ {color:#da4453} pre code span.st /* String */ {color:#98c379} pre code span.va /* Variable */ {color:#e06c75} pre code span.vs /* VerbatimString */ {color:#da4453} pre code span.wa /* Warning */ {color:#da4453} pkgdown/inst/highlight-styles/gruvbox-light.scss0000644000176200001440000000361614246155422021701 0ustar liggesuserspre {background-color: #fbf1c7;} pre code /* Normal */ {color:#3c3836} pre code span.al /* Alert */ {color:#282828; background-color:#cc241d; font-weight: bold} pre code span.an /* Annotation */ {color:#98971a} pre code span.at /* Attribute */ {color:#d79921} pre code span.bn /* BaseN */ {color:#f67400} pre code span.bu /* BuiltIn */ {color:#d65d0e} pre code span.cf /* ControlFlow */ {color:#cc241d; font-weight: bold} pre code span.ch /* Char */ {color:#b16286} pre code span.cn /* Constant */ {color:#b16286; font-weight: bold} pre code span.co /* Comment */ {color:#928374} pre code span.cv /* CommentVar */ {color:#928374} pre code span.do /* Documentation */ {color:#98971a} pre code span.dt /* DataType */ {color:#d79921} pre code span.dv /* DecVal */ {color:#f67400} pre code span.er /* Error */ {color:#cc241d; text-decoration: underline} pre code span.ex /* Extension */ {color:#689d6a; font-weight: bold} pre code span.fl /* Float */ {color:#f67400} pre code span.fu /* Function */ {color:#689d6a} pre code span.im /* Import */ {color:#689d6a} pre code span.in /* Information */ {color:#282828; background-color:#83a598} pre code span.kw /* Keyword */ {color:#3c3836; font-weight: bold} pre code span.op /* Operator */ {color:#3c3836} pre code span.ot /* Others */ {color:#689d6a} pre code span.pp /* Preprocessor */ {color:#d65d0e} pre code span.re /* RegionMarker */ {color:#928374; background-color:#f9f5d7} pre code span.sc /* SpecialChar */ {color:#b16286} pre code span.ss /* SpecialString */ {color:#98971a} pre code span.st /* String */ {color:#98971a} pre code span.va /* Variable */ {color:#458588} pre code span.vs /* VerbatimString */ {color:#98971a} pre code span.wa /* Warning */ {color:#282828; background-color:#fabd2f} pkgdown/inst/highlight-styles/ayu-mirage.scss0000644000176200001440000000353314247740574021147 0ustar liggesuserspre {background-color: #1f2430;} pre code /* Normal */ {color:#cbccc6} pre code span.al /* Alert */ {color:#ff3333; background-color:#332430; font-weight: bold} pre code span.an /* Annotation */ {color:#ffe6b3} pre code span.at /* Attribute */ {color:#73d0ff} pre code span.bn /* BaseN */ {color:#ffcc66} pre code span.bu /* BuiltIn */ {color:#95e6cb} pre code span.cf /* ControlFlow */ {color:#ffa759; font-weight: bold} pre code span.ch /* Char */ {color:#95e6cb} pre code span.cn /* Constant */ {color:#d4bfff} pre code span.co /* Comment */ {color:#5c6773; font-style: italic} pre code span.cv /* CommentVar */ {color:#d4bfff} pre code span.do /* Documentation */ {color:#5c6773} pre code span.dt /* DataType */ {color:#ffa759} pre code span.dv /* DecVal */ {color:#ffcc66} pre code span.er /* Error */ {color:#ff3333; text-decoration: underline} pre code span.ex /* Extension */ {color:#73d0ff; font-weight: bold} pre code span.fl /* Float */ {color:#ffcc66} pre code span.fu /* Function */ {color:#ffd580} pre code span.im /* Import */ {color:#bae67e} pre code span.in /* Information */ {color:#ffcc66} pre code span.kw /* Keyword */ {color:#ffa759; font-weight: bold} pre code span.op /* Operator */ {color:#f29e74} pre code span.ot /* Other */ {color:#5ccfe6} pre code span.pp /* Preprocessor */ {color:#f28779} pre code span.re /* RegionMarker */ {color:#73d0ff; background-color:#2a4254} pre code span.sc /* SpecialChar */ {color:#95e6cb} pre code span.ss /* SpecialString */ {color:#95e6cb} pre code span.st /* String */ {color:#bae67e} pre code span.va /* Variable */ {color:#5ccfe6} pre code span.vs /* VerbatimString */ {color:#bae67e} pre code span.wa /* Warning */ {color:#f28779} pkgdown/inst/po/0000755000176200001440000000000014167704045013326 5ustar liggesuserspkgdown/inst/po/ko/0000755000176200001440000000000014165723022013731 5ustar liggesuserspkgdown/inst/po/ko/LC_MESSAGES/0000755000176200001440000000000014343702101015507 5ustar liggesuserspkgdown/inst/po/ko/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000726514343702101017726 0ustar liggesusersEDal  %.5=Re v  2     *5> ER eq     %0,9fw~      ) : A L U d o z  !       ! / 6 F S [`     # * > R _ m z     *    ! ( \3      #3 : D N Xey     :>9#D*'</7  5"3&?% +E= .@0)A,1C!86-4$(;B2 # %s method for %sAbstractAll vignettesArgumentsArticlesAuthorAuthorsAuthors and CitationBrowse source codeCRAN release: %sChangelogCitationCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionUsageValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 PO-Revision-Date: 2021-11-26 15:57-0600 Last-Translator: Chanyub Park Language-Team: @mrchypark Language: ko MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # %s 타입인 %s의 메서드초록전체 사용설명서(비네트)인수관련 글 목록저자저자들저자와 인용소스코드 보기CRAN 배포: %s변경 사항인용%s 인용하기행동강령커뮤니티콘텐츠를 찾을 수 없습니다. 네비게이션 바의 링크를 이용해 주세요.기여 가이드설명세부사항개발 상태개발 상태개발자:개발자들예시 코드양식전체 라이선스함수 레퍼런스시작하기개발 버전라이선스링크저자에 대한 부분은...더 보기...뉴스노트목차페이지를 찾을 수 없습니다 (404)참조참조배포 버전릴리즈버그 신고검색더 보기현재 사이트는 다음 패키지로 생성하였습니다. - pkgdown %s콘텐츠로 바로가기소스코드소스코드:목차네비게이션바 열기튜토리얼배포전 버전사용법값버전버전 %s%s에서 보기저자편집자계약자기여자저작권자데이터 기여자자금 제공자관리자리뷰어지도교수번역자pkgdown/inst/po/fr/0000755000176200001440000000000014137761366013743 5ustar liggesuserspkgdown/inst/po/fr/LC_MESSAGES/0000755000176200001440000000000014247744126015525 5ustar liggesuserspkgdown/inst/po/fr/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000751714247744126017744 0ustar liggesusersFLa|  + 9CLS[p   2  % 0 ; HS\ cp    - 6 CN,W       * 6 G X _ j s          , D V b k t J     9 I ] f m         % < H U p y  -       * ;GX ` k w $> ;?:$E+(=08!6#4'@& ,F> /A1*B-2D97.5%)<C3 "# %s method for %sAbstractAll functionsAll vignettesArgumentsArticlesAuthorAuthorsAuthors and CitationBrowse source codeCRAN release: %sChangelogCitationCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionUsageValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 Report-Msgid-Bugs-To: PO-Revision-Date: 2021-10-27 11:57-0500 Last-Translator: Language-Team: fr Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: potools 0.2.2 # Méthode %s pour %sRésuméToutes les fonctionsTous les articlesArgumentsArticlesAuteurAuteur·rice·sAuteur·rice·s et CitationNaviguer le code sourceVersion CRAN : %sChangementsCitationCiter %sCode de conduiteCommunautéContenu introuvable. Merci d'utiliser les liens de la barre de navigation.Guide de contributionDescriptionDétailsStatut de développementStatut de développementDéveloppé parDéveloppeur·se·sExemplesFormatLicence complèteDocumentation des fonctionsPrise en mainVersion en développementLicenceLiensÀ propos des auteur·rice·s...Plus d'articles...NouveautésNoteSur cette pagePage introuvable (404)RéférenceRéférencesDernière version publiéeVersionsSignaler un bogueRechercherVoir égalementSite créé avec pkgdown %s.Passer au contenuSourceSource :Table des matièresActiver la navigationTutorielsVersion inéditeUtilisationValeur de retourVersionVersion %sVoir sur %sauteur·ricecompilateur·ricefournisseur·secontributeur·ricetitulaire des droits d'auteurcontributeur·rice des donnéesfondateur·ricemainteneur·seréviseur·sedirecteur·rice de thèsetraducteur·ricepkgdown/inst/po/de/0000755000176200001440000000000014143227671013715 5ustar liggesuserspkgdown/inst/po/de/LC_MESSAGES/0000755000176200001440000000000014343702101015466 5ustar liggesuserspkgdown/inst/po/de/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000754014343702101017701 0ustar liggesusersFLa|  + 9CLS[p   2  % 0 ; HS\ cp    - 6 CN,W       * 6 G X _ j s ;       ! * 6 O a |   ;   + 3 F Y h x            ! 2 M Y n  /  *FO j u     $1Q ;?:$E+(=08!6#4'@& ,F> /A1*B-2D97.5%)<C3 "# %s method for %sAbstractAll functionsAll vignettesArgumentsArticlesAuthorAuthorsAuthors and CitationBrowse source codeCRAN release: %sChangelogCitationCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionUsageValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 Report-Msgid-Bugs-To: PO-Revision-Date: 2021-10-28 08:02-0500 Last-Translator: Automatically generated Language-Team: none Language: de MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); # %s-Methode für %sKurzzusammenfassungAlle FunktionenAlle ArtikelArgumenteArtikelAutor:inAutor:innenAutor:innen und ZitationQuellcode ansehenCRAN-Veröffentlichung: %sÄnderungsprotokollZitationsvorschlag%s zitierenVerhaltensregelnCommunityInhalt nicht gefunden. Bitte die Navigationleiste benutzen.Leitfaden zum MitwirkenBeschreibungDetailsEntwicklungsstatusEntwicklungsstatusEntwickelt vonEntwicker:innenBeispieleFormatVollständige LizenzFunktionsverzeichnisErste SchritteVersion in EntwicklungLizenzLinksMehr zu den Autor:innenMehr Artikel ...NeuigkeitenNotizAuf dieser SeiteSeite nicht gefunden (404)VerzeichnisLiteraturverzeichnisVeröffentlichte VersionVeröffentlichungenBug meldenSuchen nachSiehe auchSeite erstellt mit pkgdown %s.Direkt zum Inhalt springenQuelleQuelle:InhaltsverzeichnisNavigation ein-/ausschaltenTutorienUnveröffentlichte VersionVerwendungRückgabewertVersionVersion %sAuf %s ansehenAutor:inZusammensteller:inAuftragnehmer:inBeitragende:rUrheberrechtsinhaber:inDatenbeitragende:rSponsor:inMaintainer:inGutachter:inBetreuer:in der AbschlussarbeitÜbersetzer:inpkgdown/inst/po/tr/0000755000176200001440000000000014140760567013755 5ustar liggesuserspkgdown/inst/po/tr/LC_MESSAGES/0000755000176200001440000000000014343702101015523 5ustar liggesuserspkgdown/inst/po/tr/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000705714343702101017741 0ustar liggesusersA$Y,    2!T gs {       16 ;H ] gr  ,  (;A I T_f o z  ; . 4 @ J P Y o    U ' @ K T j     "  & 3 G P T _ x   8     - A O h o w         %!#*=41;<> /508) '26  (? %7&A.",-:+$39@ # %s method for %sAbstractArgumentsArticlesAuthorAuthorsBrowse source codeCRAN release: %sChangelogCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 Report-Msgid-Bugs-To: PO-Revision-Date: 2021-10-28 08:02-0500 Last-Translator: Automatically generated Language-Team: none Language: tr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s için # %s metoduÖzetArgümanlarMakalelerYazarYazarlarKaynak koduna göz atCRAN yayını: %sDeğişiklik günlüğü%s'ı kaynak göstermeDavranış kurallarıKomüniteİçerik bulunamıyor. Lütfen yukarıdaki gezinme çubuğundaki bağları kullanın.Katkıda bulunma rehberiAçıklamaDetaylarGeliştirme statüsüGeliştirme statüsüGeliştirenGeliştiricilerÖrneklerFormatTam lisansFonksiyon referansıBaşlaGeliştirme aşamasındaki sürümLisansBağlantılarYazarlar hakkında daha fazla bilgi...Diğer makaleler...HaberlerNotBu sayfadaSayfa bulunamıyor (404)ReferansReferanslarYayımlanan sürümYayınlarHata bildirAraAyrıca bakSite pkgdown %s ile geliştirilmiştir.İçeriğe atlaKaynakKaynak:İçindekilerGezinmeyi aç/kapatÖğreticilerYayınlanmamış sürümDeğerSürümSürüm %s%s'da göryazarderleyicianlaşmalı tarafkatkıda bulunantelif hakkı sahibiveri katkısında bulunanfon sağlayıcıkoruyucueleştirmentez danışmanıçevirmenpkgdown/inst/po/es/0000755000176200001440000000000014137761366013743 5ustar liggesuserspkgdown/inst/po/es/LC_MESSAGES/0000755000176200001440000000000014343702101015505 5ustar liggesuserspkgdown/inst/po/es/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000764514343702101017726 0ustar liggesusersGTa$ - ; IS\ck   2 !- 5 @ K Xcl s    $ .9J S `k,t     ! , 3 < G S d u |    7 L T h }           R s          % 4 D [ d l         &-3aqx       'H_ n {  <@;%F,)>19"67$5(A' -G?! 0B2+C.3E: 8/&*=D4 ## %s method for %sAbstractAll functionsAll vignettesArgumentsArticlesAuthorAuthorsAuthors and CitationBrowse source codeCRAN release: %sChangelogCitationCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedGetting helpIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionUsageValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 Report-Msgid-Bugs-To: PO-Revision-Date: 2022-11-25 23:09+0000 Last-Translator: @dieghernan Language-Team: es Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Loco-Source-Locale: es_ES X-Generator: Loco https://localise.biz/ X-Loco-Parser: loco_parse_po # %s método para %sResumenTodas las funcionesTodos los artículosArgumentosArtículosAutor-aAutoresAutores y CitasIr al código fuenteVersión CRAN: %sRegistro de cambiosCitaCómo citar %sCódigo de conductaComunidadContenido no encontrado. Por favor utilice los enlaces de la barra de navegación.Guía para colaboradoresDescripciónDetallesEstado de DesarrolloEstado de desarrolloDesarrollado porDesarrolladoresEjemplosFormatoLicencia completaÍndice de funcionesPrimeros pasosAyuda y soporteVersión en desarrolloLicenciaEnlacesMás sobre los autores...Más artículos...NoticiasNotaEn esta páginaPágina no encontrada (404)ÍndiceReferenciasVersión publicadaLanzamientosInformar de un problemaBuscarVer tambiénSitio creado con pkgdown %s.Ir al contenidoFuenteCódigo:Índice de contenidosCambiar la navegaciónTutorialesVersión no publicadaUsoValorVersiónVersión %sVer en %sautor-acompilador-acontratistacolaborador-atitular de los derechos de autorcolaborador-a de datospatrocinador-amantenedor-arevisor-adirector-a de tesistraductor-apkgdown/inst/po/kr/0000755000176200001440000000000014165723022013734 5ustar liggesuserspkgdown/inst/po/kr/LC_MESSAGES/0000755000176200001440000000000014165723022015521 5ustar liggesuserspkgdown/inst/po/kr/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000726414165723022017737 0ustar liggesusersEDal  %.5=Re v  2     *5> ER eq     %0,9fw~      ) : A L U d (o   !      / ? L S c p Z}    $ 1 > E Y m z      *    $ + 9 @ GK      &8 ? I S ]j~    :>9#D*'</7  5"3&?% +E= .@0)A,1C!86-4$(;B2 # %s method for %sAbstractAll vignettesArgumentsArticlesAuthorAuthorsAuthors and CitationBrowse source codeCRAN release: %sChangelogCitationCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionUsageValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 POT-Creation-Date: 2021-11-26 15:57-0600 PO-Revision-Date: 2021-11-26 15:57-0600 Last-Translator: Automatically generated Language-Team: @mrchypark Language: kr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # %s 타입인 %s의 메소드초록전체 사용설명서(비네트)인수관련 글 목록저자저자들저자와 인용소스코드 확인CRAN 배포: %s변경사항인용%s 인용하기행동강령커뮤니티콘텐츠를 찾을 수 없습니다. 네비게이션 바의 링크를 이용해주세요.기여 가이드설명세부사항개발 상태개발 상태개발자:개발자들예시코드양식전체 라이선스함수 레퍼런스시작하기개발 버전라이선스링크저자에 대한 부분은...더 보기...뉴스노트목차페이지를 찾을 수 없습니다 (404)참조참조배포 버전배포버그 신고검색더 보기현재 사이트는 pkgdown %s 로 만들었습니다.콘텐츠로 바로가기소스코드소스코드:목차네비게이션바 열기튜토리얼배포전 버전사용법값버전버전 %s(%s)에서 보기저자편집자계약자기여자저작권자데이터 기여자자금 제공자관리자리뷰어고문번역자pkgdown/inst/po/zh_CN/0000755000176200001440000000000014140323600014310 5ustar liggesuserspkgdown/inst/po/zh_CN/LC_MESSAGES/0000755000176200001440000000000014343702101016077 5ustar liggesuserspkgdown/inst/po/zh_CN/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000645514343702101020316 0ustar liggesusersA$Y,    2!T gs {       16 ;H ] gr  ,  (;A I T_f o z       $ + ; Q ^ h u <|      & 3 @ S Z a q       2 : G Z d k {           # !#*=41;<> /508) '26  (? %7&A.",-:+$39@ # %s method for %sAbstractArgumentsArticlesAuthorAuthorsBrowse source codeCRAN release: %sChangelogCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 Report-Msgid-Bugs-To: PO-Revision-Date: 2021-10-28 08:02-0500 Last-Translator: Automatically generated Language-Team: none Language: zh_CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # %2$s类的%1$s函数摘要参数文章作者作者浏览源代码CRAN发布版本:%s更改日志引用 %s行为准则社区请求的页面未找到。请使用导航栏内的链接。开发指南概述细节开发状态开发状态开发者:开发者范例格式许可全部条款函数参考入门简介开发中的版本许可链接关于作者…更多文章…新闻注释该页面页面未找到(404)参考参考文献已发布的版本发布版本缺陷报告搜索相关话题该网站由 pkgdown %s 构建。跳到正文参考文献出处来源:目录切换导航栏教程未发布的版本值版本%s 版访问%s作者编译者合同员工合作者版权所有者数据提供者赞助者维护者审核者论文导师翻译者pkgdown/inst/po/pt/0000755000176200001440000000000014150004075013735 5ustar liggesuserspkgdown/inst/po/pt/LC_MESSAGES/0000755000176200001440000000000014343702101015521 5ustar liggesuserspkgdown/inst/po/pt/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000673614343702101017742 0ustar liggesusersA$Y,    2!T gs {       16 ;H ] gr  ,  (;A I T_f o z      % - 3 ; V k u  :     9 J Z c k }           1 = J [ h y ,        ! ' / : E K V b o     !#*=41;<> /508) '26  (? %7&A.",-:+$39@ # %s method for %sAbstractArgumentsArticlesAuthorAuthorsBrowse source codeCRAN release: %sChangelogCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 1.9000.9000.9000 PO-Revision-Date: 2021-11-12 15:18-0500 Last-Translator: Language-Team: Language: pt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 3.0 Plural-Forms: nplurals=2; plural=(n > 1); # %s método para %sResumoArgumentosArtigosAutorAutoresNavegue pelo código-fonteLançamento CRAN: %sChangelogCitando %sCódigo de condutaComunidadeConteúdo não encontrado. Por favor, use links na navbar.Guia de contribuiçãoDescriçãoDetalhesEstado de DesenvolvimentoStatus de desenvolvimentoDesenvolvido porDesenvolvedoresExemplosFormatoLicença completaReferência de funçõesPrimeiros passosVersão em desenvolvimentoLicençaLinksMais sobre autores...Mais artigos...NotíciaNotaNesta páginaPágina não encontrada (404)ReferênciaReferênciasVersão lançadaLançamentosReportar um erroProcurarVeja tambémSite criado com pkgdown %s.Avance para o conteúdoFonteFonte:ÍndiceAlternar de navegaçãoTutoriaisVersão não lançadaValorVersãoVersão %sVeja no %sautorcompiladorcontratantecontribuintetitular dos direitos autoraiscontribuidor de dadosfinanciadormantenedorrevisororientador de tesetradutorpkgdown/inst/po/dk/0000755000176200001440000000000014167704045013724 5ustar liggesuserspkgdown/inst/po/dk/LC_MESSAGES/0000755000176200001440000000000014245707346015515 5ustar liggesuserspkgdown/inst/po/dk/LC_MESSAGES/R-pkgdown.mo0000644000176200001440000000711614245707346017727 0ustar liggesusersFLa|  + 9CLS[p   2  % 0 ; HS\ cp    - 6 CN,W       * 6 G X _ j s        ! . 8 B R 1^        # - E L R g y        , * = C J ^ y        $ /9 B ;?:$E+(=08!6#4'@& ,F> /A1*B-2D97.5%)<C3 "# %s method for %sAbstractAll functionsAll vignettesArgumentsArticlesAuthorAuthorsAuthors and CitationBrowse source codeCRAN release: %sChangelogCitationCiting %sCode of conductCommunityContent not found. Please use links in the navbar.Contributing guideDescriptionDetailsDev StatusDev statusDeveloped byDevelopersExamplesFormatFull licenseFunction referenceGet startedIn-development versionLicenseLinksMore about authors...More articles...NewsNoteOn this pagePage not found (404)ReferenceReferencesReleased versionReleasesReport a bugSearch forSee alsoSite built with pkgdown %s.Skip to contentsSourceSource:Table of contentsToggle navigationTutorialsUnreleased versionUsageValueVersionVersion %sView on %sauthorcompilercontractorcontributorcopyright holderdata contributorfundermaintainerreviewerthesis advisortranslatorProject-Id-Version: pkgdown 2.0.1.9000 PO-Revision-Date: 2021-12-20 18:48+0100 Last-Translator: Automatically generated Language-Team: none Language: dk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # %s metode for %sSammenfatningAlle funktionerAlle vignetterArgumenterArtiklerForfatterForfattereForfattere og citationSe kildekodeCRAN udgivelse: %sÆndringslogReferenceCitér %sEtisk regelsætFællesskabIndhold ikke fundet. Brug venligst links i menuenGuide til bidragsydereBeskrivelseDetaljerUdviklingsstatusUdviklingsstatusUdviklet afUdviklereEksemplerFormatFuld licensFunktionsoversigtKom igangVersion under udviklingLicensLinksMere om forfattereneFlere artikler...NyhederNotePå denne sideSide ikke fundet (404)ReferenceReferencerUdgivet versionUdgivelserRapportér en fejlSøgSe ogsåSide bygget med pkgdown %s.Spring til indholdKildeKilde:IndholdsfortegnelseSlå navigation til og fraVejledningIkke-udgivet versionBrugVærdiVersionVersion %sSe på %sforfattercompilerleverandørBidragsyderIndehaver af ophavsretdataleverandørbevilgingsgivermaintainerbedømmervejlederoversætterpkgdown/po/0000755000176200001440000000000014343702101012334 5ustar liggesuserspkgdown/po/R-pt.po0000644000176200001440000001223014343702101013514 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 1.9000.9000.9000\n" "POT-Creation-Date: 2022-11-25 22:33+0100\n" "PO-Revision-Date: 2021-11-12 15:18-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "Página não encontrada (404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "Conteúdo não encontrado. Por favor, use links na navbar." #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "Artigos" #: build-articles.R:430 msgid "All vignettes" msgstr "" #: build-footer.R:23 msgid "Developed by" msgstr "Desenvolvido por" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "Site criado com pkgdown %s." #: build-home-authors.R:69 msgid "More about authors..." msgstr "Mais sobre autores..." #: build-home-authors.R:72 msgid "Developers" msgstr "Desenvolvedores" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "Autores" #: build-home-authors.R:169 msgid "author" msgstr "autor" #: build-home-authors.R:170 msgid "compiler" msgstr "compilador" #: build-home-authors.R:171 msgid "contractor" msgstr "contratante" #: build-home-authors.R:172 msgid "contributor" msgstr "contribuinte" #: build-home-authors.R:173 msgid "copyright holder" msgstr "titular dos direitos autorais" #: build-home-authors.R:174 msgid "maintainer" msgstr "mantenedor" #: build-home-authors.R:175 msgid "data contributor" msgstr "contribuidor de dados" #: build-home-authors.R:176 msgid "funder" msgstr "financiador" #: build-home-authors.R:177 msgid "reviewer" msgstr "revisor" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "orientador de tese" #: build-home-authors.R:179 msgid "translator" msgstr "tradutor" #: build-home-citation.R:36 msgid "Citing %s" msgstr "Citando %s" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "" #: build-home-community.R:23 msgid "Contributing guide" msgstr "Guia de contribuição" #: build-home-community.R:27 msgid "Code of conduct" msgstr "Código de conduta" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "Comunidade" #: build-home-index.R:88 msgid "Dev Status" msgstr "Estado de Desenvolvimento" #: build-home-index.R:154 msgid "View on %s" msgstr "Veja no %s" #: build-home-index.R:155 msgid "Browse source code" msgstr "Navegue pelo código-fonte" #: build-home-index.R:156 msgid "Report a bug" msgstr "Reportar um erro" #: build-home-index.R:160 msgid "Links" msgstr "Links" #: build-home-index.R:165 msgid "Table of contents" msgstr "Índice" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "Licença" #: build-home-license.R:29 msgid "Full license" msgstr "Licença completa" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "Changelog" #: build-news.R:126 msgid "Version %s" msgstr "Versão %s" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "Notícia" #: build-news.R:242 msgid "Releases" msgstr "Lançamentos" #: build-news.R:298 msgid "CRAN release: %s" msgstr "Lançamento CRAN: %s" #: build-reference-index.R:20 msgid "Function reference" msgstr "Referência de funções" #: build-reference-index.R:130 msgid "All functions" msgstr "" #: build-reference.R:353 msgid "Usage" msgstr "" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "Tutoriais" #: development.R:72 msgid "Released version" msgstr "Versão lançada" #: development.R:73 msgid "In-development version" msgstr "Versão em desenvolvimento" #: development.R:74 msgid "Unreleased version" msgstr "Versão não lançada" #: navbar.R:99 msgid "Reference" msgstr "Referência" #: navbar.R:130 msgid "Get started" msgstr "Primeiros passos" #: navbar.R:156 msgid "More articles..." msgstr "Mais artigos..." #: rd-data.R:33 msgid "Details" msgstr "Detalhes" #: rd-data.R:37 msgid "Description" msgstr "Descrição" #: rd-data.R:41 msgid "References" msgstr "Referências" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "Fonte" #: rd-data.R:49 msgid "Format" msgstr "Formato" #: rd-data.R:53 msgid "Note" msgstr "Nota" #: rd-data.R:57 msgid "Author" msgstr "Autor" #: rd-data.R:61 msgid "See also" msgstr "Veja também" #: rd-data.R:77 msgid "Arguments" msgstr "Argumentos" #: rd-data.R:85 msgid "Value" msgstr "Valor" #: rd-html.R:208 msgid "# %s method for %s" msgstr "# %s método para %s" #: render.R:90 msgid "Skip to contents" msgstr "Avance para o conteúdo" #: render.R:91 msgid "Toggle navigation" msgstr "Alternar de navegação" #: render.R:92 msgid "Search for" msgstr "Procurar" #: render.R:93 msgid "On this page" msgstr "Nesta página" #: render.R:95 msgid "Abstract" msgstr "Resumo" #: render.R:97 msgid "Version" msgstr "Versão" #: render.R:98 msgid "Examples" msgstr "Exemplos" #: render.R:99 msgid "Citation" msgstr "" #: repo.R:33 msgid "Source:" msgstr "Fonte:" #: tweak-homepage.R:60 msgid "Dev status" msgstr "Status de desenvolvimento" pkgdown/po/R-pkgdown.pot0000644000176200001440000001032314343702101014727 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 2.0.6.9000\n" "POT-Creation-Date: 2022-11-25 22:59+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "" #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "" #: build-articles.R:430 msgid "All vignettes" msgstr "" #: build-footer.R:23 msgid "Developed by" msgstr "" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "" #: build-home-authors.R:69 msgid "More about authors..." msgstr "" #: build-home-authors.R:72 msgid "Developers" msgstr "" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "" #: build-home-authors.R:169 msgid "author" msgstr "" #: build-home-authors.R:170 msgid "compiler" msgstr "" #: build-home-authors.R:171 msgid "contractor" msgstr "" #: build-home-authors.R:172 msgid "contributor" msgstr "" #: build-home-authors.R:173 msgid "copyright holder" msgstr "" #: build-home-authors.R:174 msgid "maintainer" msgstr "" #: build-home-authors.R:175 msgid "data contributor" msgstr "" #: build-home-authors.R:176 msgid "funder" msgstr "" #: build-home-authors.R:177 msgid "reviewer" msgstr "" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "" #: build-home-authors.R:179 msgid "translator" msgstr "" #: build-home-citation.R:36 msgid "Citing %s" msgstr "" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "" #: build-home-community.R:23 msgid "Contributing guide" msgstr "" #: build-home-community.R:27 msgid "Code of conduct" msgstr "" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "" #: build-home-index.R:88 msgid "Dev Status" msgstr "" #: build-home-index.R:154 msgid "View on %s" msgstr "" #: build-home-index.R:155 msgid "Browse source code" msgstr "" #: build-home-index.R:156 msgid "Report a bug" msgstr "" #: build-home-index.R:160 msgid "Links" msgstr "" #: build-home-index.R:165 msgid "Table of contents" msgstr "" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "" #: build-home-license.R:29 msgid "Full license" msgstr "" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "" #: build-news.R:126 msgid "Version %s" msgstr "" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "" #: build-news.R:242 msgid "Releases" msgstr "" #: build-news.R:298 msgid "CRAN release: %s" msgstr "" #: build-reference-index.R:20 msgid "Function reference" msgstr "" #: build-reference-index.R:130 msgid "All functions" msgstr "" #: build-reference.R:353 msgid "Usage" msgstr "" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "" #: development.R:72 msgid "Released version" msgstr "" #: development.R:73 msgid "In-development version" msgstr "" #: development.R:74 msgid "Unreleased version" msgstr "" #: navbar.R:99 msgid "Reference" msgstr "" #: navbar.R:130 msgid "Get started" msgstr "" #: navbar.R:156 msgid "More articles..." msgstr "" #: rd-data.R:33 msgid "Details" msgstr "" #: rd-data.R:37 msgid "Description" msgstr "" #: rd-data.R:41 msgid "References" msgstr "" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "" #: rd-data.R:49 msgid "Format" msgstr "" #: rd-data.R:53 msgid "Note" msgstr "" #: rd-data.R:57 msgid "Author" msgstr "" #: rd-data.R:61 msgid "See also" msgstr "" #: rd-data.R:77 msgid "Arguments" msgstr "" #: rd-data.R:85 msgid "Value" msgstr "" #: rd-html.R:208 msgid "# %s method for %s" msgstr "" #: render.R:90 msgid "Skip to contents" msgstr "" #: render.R:91 msgid "Toggle navigation" msgstr "" #: render.R:92 msgid "Search for" msgstr "" #: render.R:93 msgid "On this page" msgstr "" #: render.R:95 msgid "Abstract" msgstr "" #: render.R:97 msgid "Version" msgstr "" #: render.R:98 msgid "Examples" msgstr "" #: render.R:99 msgid "Citation" msgstr "" #: repo.R:33 msgid "Source:" msgstr "" #: tweak-homepage.R:60 msgid "Dev status" msgstr "" pkgdown/po/R-zh_CN.po0000644000176200001440000001174314343702101014102 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 1.9000.9000.9000\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-11-25 22:33+0100\n" "PO-Revision-Date: 2021-10-28 08:02-0500\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "页面未找到(404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "请求的页面未找到。请使用导航栏内的链接。" #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "文章" #: build-articles.R:430 msgid "All vignettes" msgstr "" #: build-footer.R:23 msgid "Developed by" msgstr "开发者:" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "该网站由 pkgdown %s 构建。" #: build-home-authors.R:69 msgid "More about authors..." msgstr "关于作者…" #: build-home-authors.R:72 msgid "Developers" msgstr "开发者" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "作者" #: build-home-authors.R:169 msgid "author" msgstr "作者" #: build-home-authors.R:170 msgid "compiler" msgstr "编译者" #: build-home-authors.R:171 msgid "contractor" msgstr "合同员工" #: build-home-authors.R:172 msgid "contributor" msgstr "合作者" #: build-home-authors.R:173 msgid "copyright holder" msgstr "版权所有者" #: build-home-authors.R:174 msgid "maintainer" msgstr "维护者" #: build-home-authors.R:175 msgid "data contributor" msgstr "数据提供者" #: build-home-authors.R:176 msgid "funder" msgstr "赞助者" #: build-home-authors.R:177 msgid "reviewer" msgstr "审核者" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "论文导师" #: build-home-authors.R:179 msgid "translator" msgstr "翻译者" #: build-home-citation.R:36 msgid "Citing %s" msgstr "引用 %s" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "" #: build-home-community.R:23 msgid "Contributing guide" msgstr "开发指南" #: build-home-community.R:27 msgid "Code of conduct" msgstr "行为准则" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "社区" #: build-home-index.R:88 msgid "Dev Status" msgstr "开发状态" #: build-home-index.R:154 msgid "View on %s" msgstr "访问%s" #: build-home-index.R:155 msgid "Browse source code" msgstr "浏览源代码" #: build-home-index.R:156 msgid "Report a bug" msgstr "缺陷报告" #: build-home-index.R:160 msgid "Links" msgstr "链接" #: build-home-index.R:165 msgid "Table of contents" msgstr "目录" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "许可" #: build-home-license.R:29 msgid "Full license" msgstr "许可全部条款" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "更改日志" #: build-news.R:126 msgid "Version %s" msgstr "%s 版" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "新闻" #: build-news.R:242 msgid "Releases" msgstr "发布版本" #: build-news.R:298 msgid "CRAN release: %s" msgstr "CRAN发布版本:%s" #: build-reference-index.R:20 msgid "Function reference" msgstr "函数参考" #: build-reference-index.R:130 msgid "All functions" msgstr "" #: build-reference.R:353 msgid "Usage" msgstr "" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "教程" #: development.R:72 msgid "Released version" msgstr "已发布的版本" #: development.R:73 msgid "In-development version" msgstr "开发中的版本" #: development.R:74 msgid "Unreleased version" msgstr "未发布的版本" #: navbar.R:99 msgid "Reference" msgstr "参考" #: navbar.R:130 msgid "Get started" msgstr "入门简介" #: navbar.R:156 msgid "More articles..." msgstr "更多文章…" #: rd-data.R:33 msgid "Details" msgstr "细节" #: rd-data.R:37 msgid "Description" msgstr "概述" #: rd-data.R:41 msgid "References" msgstr "参考文献" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "参考文献出处" #: rd-data.R:49 msgid "Format" msgstr "格式" #: rd-data.R:53 msgid "Note" msgstr "注释" #: rd-data.R:57 msgid "Author" msgstr "作者" #: rd-data.R:61 msgid "See also" msgstr "相关话题" #: rd-data.R:77 msgid "Arguments" msgstr "参数" #: rd-data.R:85 msgid "Value" msgstr "值" #: rd-html.R:208 msgid "# %s method for %s" msgstr "# %2$s类的%1$s函数" #: render.R:90 msgid "Skip to contents" msgstr "跳到正文" #: render.R:91 msgid "Toggle navigation" msgstr "切换导航栏" #: render.R:92 msgid "Search for" msgstr "搜索" #: render.R:93 msgid "On this page" msgstr "该页面" #: render.R:95 msgid "Abstract" msgstr "摘要" #: render.R:97 msgid "Version" msgstr "版本" #: render.R:98 msgid "Examples" msgstr "范例" #: render.R:99 msgid "Citation" msgstr "" #: repo.R:33 msgid "Source:" msgstr "来源:" #: tweak-homepage.R:60 msgid "Dev status" msgstr "开发状态" pkgdown/po/R-tr.po0000644000176200001440000001235414343702101013525 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 1.9000.9000.9000\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-11-25 22:33+0100\n" "PO-Revision-Date: 2021-10-28 08:02-0500\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "Sayfa bulunamıyor (404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "" "İçerik bulunamıyor. Lütfen yukarıdaki gezinme çubuğundaki bağları kullanın." #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "Makaleler" #: build-articles.R:430 msgid "All vignettes" msgstr "" #: build-footer.R:23 msgid "Developed by" msgstr "Geliştiren" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "Site pkgdown %s ile geliştirilmiştir." #: build-home-authors.R:69 msgid "More about authors..." msgstr "Yazarlar hakkında daha fazla bilgi..." #: build-home-authors.R:72 msgid "Developers" msgstr "Geliştiriciler" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "Yazarlar" #: build-home-authors.R:169 msgid "author" msgstr "yazar" #: build-home-authors.R:170 msgid "compiler" msgstr "derleyici" #: build-home-authors.R:171 msgid "contractor" msgstr "anlaşmalı taraf" #: build-home-authors.R:172 msgid "contributor" msgstr "katkıda bulunan" #: build-home-authors.R:173 msgid "copyright holder" msgstr "telif hakkı sahibi" #: build-home-authors.R:174 msgid "maintainer" msgstr "koruyucu" #: build-home-authors.R:175 msgid "data contributor" msgstr "veri katkısında bulunan" #: build-home-authors.R:176 msgid "funder" msgstr "fon sağlayıcı" #: build-home-authors.R:177 msgid "reviewer" msgstr "eleştirmen" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "tez danışmanı" #: build-home-authors.R:179 msgid "translator" msgstr "çevirmen" #: build-home-citation.R:36 msgid "Citing %s" msgstr "%s'ı kaynak gösterme" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "" #: build-home-community.R:23 msgid "Contributing guide" msgstr "Katkıda bulunma rehberi" #: build-home-community.R:27 msgid "Code of conduct" msgstr "Davranış kuralları" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "Komünite" #: build-home-index.R:88 msgid "Dev Status" msgstr "Geliştirme statüsü" #: build-home-index.R:154 msgid "View on %s" msgstr "%s'da gör" #: build-home-index.R:155 msgid "Browse source code" msgstr "Kaynak koduna göz at" #: build-home-index.R:156 msgid "Report a bug" msgstr "Hata bildir" #: build-home-index.R:160 msgid "Links" msgstr "Bağlantılar" #: build-home-index.R:165 msgid "Table of contents" msgstr "İçindekiler" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "Lisans" #: build-home-license.R:29 msgid "Full license" msgstr "Tam lisans" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "Değişiklik günlüğü" #: build-news.R:126 msgid "Version %s" msgstr "Sürüm %s" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "Haberler" #: build-news.R:242 msgid "Releases" msgstr "Yayınlar" #: build-news.R:298 msgid "CRAN release: %s" msgstr "CRAN yayını: %s" #: build-reference-index.R:20 msgid "Function reference" msgstr "Fonksiyon referansı" #: build-reference-index.R:130 msgid "All functions" msgstr "" #: build-reference.R:353 msgid "Usage" msgstr "" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "Öğreticiler" #: development.R:72 msgid "Released version" msgstr "Yayımlanan sürüm" #: development.R:73 msgid "In-development version" msgstr "Geliştirme aşamasındaki sürüm" #: development.R:74 msgid "Unreleased version" msgstr "Yayınlanmamış sürüm" #: navbar.R:99 msgid "Reference" msgstr "Referans" #: navbar.R:130 msgid "Get started" msgstr "Başla" #: navbar.R:156 msgid "More articles..." msgstr "Diğer makaleler..." #: rd-data.R:33 msgid "Details" msgstr "Detaylar" #: rd-data.R:37 msgid "Description" msgstr "Açıklama" #: rd-data.R:41 msgid "References" msgstr "Referanslar" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "Kaynak" #: rd-data.R:49 msgid "Format" msgstr "Format" #: rd-data.R:53 msgid "Note" msgstr "Not" #: rd-data.R:57 msgid "Author" msgstr "Yazar" #: rd-data.R:61 msgid "See also" msgstr "Ayrıca bak" #: rd-data.R:77 msgid "Arguments" msgstr "Argümanlar" #: rd-data.R:85 msgid "Value" msgstr "Değer" #: rd-html.R:208 msgid "# %s method for %s" msgstr "%s için # %s metodu" #: render.R:90 msgid "Skip to contents" msgstr "İçeriğe atla" #: render.R:91 msgid "Toggle navigation" msgstr "Gezinmeyi aç/kapat" #: render.R:92 msgid "Search for" msgstr "Ara" #: render.R:93 msgid "On this page" msgstr "Bu sayfada" #: render.R:95 msgid "Abstract" msgstr "Özet" #: render.R:97 msgid "Version" msgstr "Sürüm" #: render.R:98 msgid "Examples" msgstr "Örnekler" #: render.R:99 msgid "Citation" msgstr "" #: repo.R:33 msgid "Source:" msgstr "Kaynak:" #: tweak-homepage.R:60 msgid "Dev status" msgstr "Geliştirme statüsü" pkgdown/po/R-ko.po0000644000176200001440000001232414343702101013506 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 1.9000.9000.9000\n" "POT-Creation-Date: 2022-11-25 22:33+0100\n" "PO-Revision-Date: 2021-11-26 15:57-0600\n" "Last-Translator: Chanyub Park \n" "Language-Team: @mrchypark\n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "페이지를 찾을 수 없습니다 (404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "콘텐츠를 찾을 수 없습니다. 네비게이션 바의 링크를 이용해 주세요." #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "관련 글 목록" #: build-articles.R:430 msgid "All vignettes" msgstr "전체 사용설명서(비네트)" #: build-footer.R:23 msgid "Developed by" msgstr "개발자:" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "" "현재 사이트는 다음 패키지로 생성하였습니다. - pkgdown %s" #: build-home-authors.R:69 msgid "More about authors..." msgstr "저자에 대한 부분은..." #: build-home-authors.R:72 msgid "Developers" msgstr "개발자들" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "저자들" #: build-home-authors.R:169 msgid "author" msgstr "저자" #: build-home-authors.R:170 msgid "compiler" msgstr "편집자" #: build-home-authors.R:171 msgid "contractor" msgstr "계약자" #: build-home-authors.R:172 msgid "contributor" msgstr "기여자" #: build-home-authors.R:173 msgid "copyright holder" msgstr "저작권자" #: build-home-authors.R:174 msgid "maintainer" msgstr "관리자" #: build-home-authors.R:175 msgid "data contributor" msgstr "데이터 기여자" #: build-home-authors.R:176 msgid "funder" msgstr "자금 제공자" #: build-home-authors.R:177 msgid "reviewer" msgstr "리뷰어" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "지도교수" #: build-home-authors.R:179 msgid "translator" msgstr "번역자" #: build-home-citation.R:36 msgid "Citing %s" msgstr "%s 인용하기" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "저자와 인용" #: build-home-community.R:23 msgid "Contributing guide" msgstr "기여 가이드" #: build-home-community.R:27 msgid "Code of conduct" msgstr "행동강령" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "커뮤니티" #: build-home-index.R:88 msgid "Dev Status" msgstr "개발 상태" #: build-home-index.R:154 msgid "View on %s" msgstr "%s에서 보기" #: build-home-index.R:155 msgid "Browse source code" msgstr "소스코드 보기" #: build-home-index.R:156 msgid "Report a bug" msgstr "버그 신고" #: build-home-index.R:160 msgid "Links" msgstr "링크" #: build-home-index.R:165 msgid "Table of contents" msgstr "목차" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "라이선스" #: build-home-license.R:29 msgid "Full license" msgstr "전체 라이선스" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "변경 사항" #: build-news.R:126 msgid "Version %s" msgstr "버전 %s" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "뉴스" #: build-news.R:242 msgid "Releases" msgstr "릴리즈" #: build-news.R:298 msgid "CRAN release: %s" msgstr "CRAN 배포: %s" #: build-reference-index.R:20 msgid "Function reference" msgstr "함수 레퍼런스" #: build-reference-index.R:130 msgid "All functions" msgstr "" #: build-reference.R:353 msgid "Usage" msgstr "사용법" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "튜토리얼" #: development.R:72 msgid "Released version" msgstr "배포 버전" #: development.R:73 msgid "In-development version" msgstr "개발 버전" #: development.R:74 msgid "Unreleased version" msgstr "배포전 버전" #: navbar.R:99 msgid "Reference" msgstr "참조" #: navbar.R:130 msgid "Get started" msgstr "시작하기" #: navbar.R:156 msgid "More articles..." msgstr "더 보기..." #: rd-data.R:33 msgid "Details" msgstr "세부사항" #: rd-data.R:37 msgid "Description" msgstr "설명" #: rd-data.R:41 msgid "References" msgstr "참조" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "소스코드" #: rd-data.R:49 msgid "Format" msgstr "양식" #: rd-data.R:53 msgid "Note" msgstr "노트" #: rd-data.R:57 msgid "Author" msgstr "저자" #: rd-data.R:61 msgid "See also" msgstr "더 보기" #: rd-data.R:77 msgid "Arguments" msgstr "인수" #: rd-data.R:85 msgid "Value" msgstr "값" #: rd-html.R:208 msgid "# %s method for %s" msgstr "# %s 타입인 %s의 메서드" #: render.R:90 msgid "Skip to contents" msgstr "콘텐츠로 바로가기" #: render.R:91 msgid "Toggle navigation" msgstr "네비게이션바 열기" #: render.R:92 msgid "Search for" msgstr "검색" #: render.R:93 msgid "On this page" msgstr "목차" #: render.R:95 msgid "Abstract" msgstr "초록" #: render.R:97 msgid "Version" msgstr "버전" #: render.R:98 msgid "Examples" msgstr "예시 코드" #: render.R:99 msgid "Citation" msgstr "인용" #: repo.R:33 msgid "Source:" msgstr "소스코드:" #: tweak-homepage.R:60 msgid "Dev status" msgstr "개발 상태" pkgdown/po/R-es.po0000644000176200001440000001263614343702101013512 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 1.9000.9000.9000\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-11-25 23:05+0100\n" "PO-Revision-Date: 2022-11-25 23:09+0000\n" "Last-Translator: @dieghernan\n" "Language-Team: es\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Loco-Source-Locale: es_ES\n" "X-Generator: Loco https://localise.biz/\n" "X-Loco-Parser: loco_parse_po\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "Página no encontrada (404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "" "Contenido no encontrado. Por favor utilice los enlaces de la barra de " "navegación." #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "Artículos" #: build-articles.R:430 msgid "All vignettes" msgstr "Todos los artículos" #: build-footer.R:23 msgid "Developed by" msgstr "Desarrollado por" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "Sitio creado con pkgdown %s." #: build-home-authors.R:69 msgid "More about authors..." msgstr "Más sobre los autores..." #: build-home-authors.R:72 msgid "Developers" msgstr "Desarrolladores" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "Autores" #: build-home-authors.R:169 msgid "author" msgstr "autor-a" #: build-home-authors.R:170 msgid "compiler" msgstr "compilador-a" #: build-home-authors.R:171 msgid "contractor" msgstr "contratista" #: build-home-authors.R:172 msgid "contributor" msgstr "colaborador-a" #: build-home-authors.R:173 msgid "copyright holder" msgstr "titular de los derechos de autor" #: build-home-authors.R:174 msgid "maintainer" msgstr "mantenedor-a" #: build-home-authors.R:175 msgid "data contributor" msgstr "colaborador-a de datos" #: build-home-authors.R:176 msgid "funder" msgstr "patrocinador-a" #: build-home-authors.R:177 msgid "reviewer" msgstr "revisor-a" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "director-a de tesis" #: build-home-authors.R:179 msgid "translator" msgstr "traductor-a" #: build-home-citation.R:36 msgid "Citing %s" msgstr "Cómo citar %s" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "Autores y Citas" #: build-home-community.R:23 msgid "Contributing guide" msgstr "Guía para colaboradores" #: build-home-community.R:27 msgid "Code of conduct" msgstr "Código de conducta" #: build-home-community.R:31 msgid "Getting help" msgstr "Ayuda y soporte" #: build-home-community.R:38 msgid "Community" msgstr "Comunidad" #: build-home-index.R:88 msgid "Dev Status" msgstr "Estado de Desarrollo" #: build-home-index.R:154 msgid "View on %s" msgstr "Ver en %s" #: build-home-index.R:155 msgid "Browse source code" msgstr "Ir al código fuente" #: build-home-index.R:156 msgid "Report a bug" msgstr "Informar de un problema" #: build-home-index.R:160 msgid "Links" msgstr "Enlaces" #: build-home-index.R:165 msgid "Table of contents" msgstr "Índice de contenidos" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "Licencia" #: build-home-license.R:29 msgid "Full license" msgstr "Licencia completa" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "Registro de cambios" #: build-news.R:126 msgid "Version %s" msgstr "Versión %s" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "Noticias" #: build-news.R:242 msgid "Releases" msgstr "Lanzamientos" #: build-news.R:298 msgid "CRAN release: %s" msgstr "Versión CRAN: %s" #: build-reference-index.R:20 msgid "Function reference" msgstr "Índice de funciones" #: build-reference-index.R:130 msgid "All functions" msgstr "Todas las funciones" #: build-reference.R:353 msgid "Usage" msgstr "Uso" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "Tutoriales" #: development.R:72 msgid "Released version" msgstr "Versión publicada" #: development.R:73 msgid "In-development version" msgstr "Versión en desarrollo" #: development.R:74 msgid "Unreleased version" msgstr "Versión no publicada" #: navbar.R:99 msgid "Reference" msgstr "Índice" #: navbar.R:130 msgid "Get started" msgstr "Primeros pasos" #: navbar.R:156 msgid "More articles..." msgstr "Más artículos..." #: rd-data.R:33 msgid "Details" msgstr "Detalles" #: rd-data.R:37 msgid "Description" msgstr "Descripción" #: rd-data.R:41 msgid "References" msgstr "Referencias" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "Fuente" #: rd-data.R:49 msgid "Format" msgstr "Formato" #: rd-data.R:53 msgid "Note" msgstr "Nota" #: rd-data.R:57 msgid "Author" msgstr "Autor-a" #: rd-data.R:61 msgid "See also" msgstr "Ver también" #: rd-data.R:77 msgid "Arguments" msgstr "Argumentos" #: rd-data.R:85 msgid "Value" msgstr "Valor" #: rd-html.R:208 msgid "# %s method for %s" msgstr "# %s método para %s" #: render.R:90 msgid "Skip to contents" msgstr "Ir al contenido" #: render.R:91 msgid "Toggle navigation" msgstr "Cambiar la navegación" #: render.R:92 msgid "Search for" msgstr "Buscar" #: render.R:93 msgid "On this page" msgstr "En esta página" #: render.R:95 msgid "Abstract" msgstr "Resumen" #: render.R:97 msgid "Version" msgstr "Versión" #: render.R:98 msgid "Examples" msgstr "Ejemplos" #: render.R:99 msgid "Citation" msgstr "Cita" #: repo.R:33 msgid "Source:" msgstr "Código:" #: tweak-homepage.R:60 msgid "Dev status" msgstr "Estado de desarrollo" pkgdown/po/R-dk.po0000644000176200001440000001211314343702101013467 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 2.0.1.9000\n" "POT-Creation-Date: 2022-11-25 22:33+0100\n" "PO-Revision-Date: 2021-12-20 18:48+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: dk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "Side ikke fundet (404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "Indhold ikke fundet. Brug venligst links i menuen" #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "Artikler" #: build-articles.R:430 msgid "All vignettes" msgstr "Alle vignetter" #: build-footer.R:23 msgid "Developed by" msgstr "Udviklet af" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "Side bygget med pkgdown %s." #: build-home-authors.R:69 msgid "More about authors..." msgstr "Mere om forfatterene" #: build-home-authors.R:72 msgid "Developers" msgstr "Udviklere" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "Forfattere" #: build-home-authors.R:169 msgid "author" msgstr "forfatter" #: build-home-authors.R:170 msgid "compiler" msgstr "compiler" #: build-home-authors.R:171 msgid "contractor" msgstr "leverandør" #: build-home-authors.R:172 msgid "contributor" msgstr "Bidragsyder" #: build-home-authors.R:173 msgid "copyright holder" msgstr "Indehaver af ophavsret" #: build-home-authors.R:174 msgid "maintainer" msgstr "maintainer" #: build-home-authors.R:175 msgid "data contributor" msgstr "dataleverandør" #: build-home-authors.R:176 msgid "funder" msgstr "bevilgingsgiver" #: build-home-authors.R:177 msgid "reviewer" msgstr "bedømmer" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "vejleder" #: build-home-authors.R:179 msgid "translator" msgstr "oversætter" #: build-home-citation.R:36 msgid "Citing %s" msgstr "Citér %s" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "Forfattere og citation" #: build-home-community.R:23 msgid "Contributing guide" msgstr "Guide til bidragsydere" #: build-home-community.R:27 msgid "Code of conduct" msgstr "Etisk regelsæt" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "Fællesskab" #: build-home-index.R:88 msgid "Dev Status" msgstr "Udviklingsstatus" #: build-home-index.R:154 msgid "View on %s" msgstr "Se på %s" #: build-home-index.R:155 msgid "Browse source code" msgstr "Se kildekode" #: build-home-index.R:156 msgid "Report a bug" msgstr "Rapportér en fejl" #: build-home-index.R:160 msgid "Links" msgstr "Links" #: build-home-index.R:165 msgid "Table of contents" msgstr "Indholdsfortegnelse" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "Licens" #: build-home-license.R:29 msgid "Full license" msgstr "Fuld licens" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "Ændringslog" #: build-news.R:126 msgid "Version %s" msgstr "Version %s" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "Nyheder" #: build-news.R:242 msgid "Releases" msgstr "Udgivelser" #: build-news.R:298 msgid "CRAN release: %s" msgstr "CRAN udgivelse: %s" #: build-reference-index.R:20 msgid "Function reference" msgstr "Funktionsoversigt" #: build-reference-index.R:130 msgid "All functions" msgstr "Alle funktioner" #: build-reference.R:353 msgid "Usage" msgstr "Brug" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "Vejledning" #: development.R:72 msgid "Released version" msgstr "Udgivet version" #: development.R:73 msgid "In-development version" msgstr "Version under udvikling" #: development.R:74 msgid "Unreleased version" msgstr "Ikke-udgivet version" #: navbar.R:99 msgid "Reference" msgstr "Reference" #: navbar.R:130 msgid "Get started" msgstr "Kom igang" #: navbar.R:156 msgid "More articles..." msgstr "Flere artikler..." #: rd-data.R:33 msgid "Details" msgstr "Detaljer" #: rd-data.R:37 msgid "Description" msgstr "Beskrivelse" #: rd-data.R:41 msgid "References" msgstr "Referencer" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "Kilde" #: rd-data.R:49 msgid "Format" msgstr "Format" #: rd-data.R:53 msgid "Note" msgstr "Note" #: rd-data.R:57 msgid "Author" msgstr "Forfatter" #: rd-data.R:61 msgid "See also" msgstr "Se også" #: rd-data.R:77 msgid "Arguments" msgstr "Argumenter" #: rd-data.R:85 msgid "Value" msgstr "Værdi" #: rd-html.R:208 msgid "# %s method for %s" msgstr "# %s metode for %s" #: render.R:90 msgid "Skip to contents" msgstr "Spring til indhold" #: render.R:91 msgid "Toggle navigation" msgstr "Slå navigation til og fra" #: render.R:92 msgid "Search for" msgstr "Søg" #: render.R:93 msgid "On this page" msgstr "På denne side" #: render.R:95 msgid "Abstract" msgstr "Sammenfatning" #: render.R:97 msgid "Version" msgstr "Version" #: render.R:98 msgid "Examples" msgstr "Eksempler" #: render.R:99 msgid "Citation" msgstr "Reference" #: repo.R:33 msgid "Source:" msgstr "Kilde:" #: tweak-homepage.R:60 msgid "Dev status" msgstr "Udviklingsstatus" pkgdown/po/R-de.po0000644000176200001440000001254514343702101013472 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 1.9000.9000.9000\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-11-25 22:33+0100\n" "PO-Revision-Date: 2021-10-28 08:02-0500\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "Seite nicht gefunden (404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "Inhalt nicht gefunden. Bitte die Navigationleiste benutzen." #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "Artikel" #: build-articles.R:430 msgid "All vignettes" msgstr "Alle Artikel" #: build-footer.R:23 msgid "Developed by" msgstr "Entwickelt von" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "Seite erstellt mit pkgdown %s." #: build-home-authors.R:69 msgid "More about authors..." msgstr "Mehr zu den Autor:innen" #: build-home-authors.R:72 msgid "Developers" msgstr "Entwicker:innen" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "Autor:innen" #: build-home-authors.R:169 msgid "author" msgstr "Autor:in" #: build-home-authors.R:170 msgid "compiler" msgstr "Zusammensteller:in" #: build-home-authors.R:171 msgid "contractor" msgstr "Auftragnehmer:in" #: build-home-authors.R:172 msgid "contributor" msgstr "Beitragende:r" #: build-home-authors.R:173 msgid "copyright holder" msgstr "Urheberrechtsinhaber:in" #: build-home-authors.R:174 msgid "maintainer" msgstr "Maintainer:in" #: build-home-authors.R:175 msgid "data contributor" msgstr "Datenbeitragende:r" #: build-home-authors.R:176 msgid "funder" msgstr "Sponsor:in" #: build-home-authors.R:177 msgid "reviewer" msgstr "Gutachter:in" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "Betreuer:in der Abschlussarbeit" #: build-home-authors.R:179 msgid "translator" msgstr "Übersetzer:in" #: build-home-citation.R:36 msgid "Citing %s" msgstr "%s zitieren" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "Autor:innen und Zitation" #: build-home-community.R:23 msgid "Contributing guide" msgstr "Leitfaden zum Mitwirken" #: build-home-community.R:27 msgid "Code of conduct" msgstr "Verhaltensregeln" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "Community" #: build-home-index.R:88 msgid "Dev Status" msgstr "Entwicklungsstatus" #: build-home-index.R:154 msgid "View on %s" msgstr "Auf %s ansehen" #: build-home-index.R:155 msgid "Browse source code" msgstr "Quellcode ansehen" #: build-home-index.R:156 msgid "Report a bug" msgstr "Bug melden" #: build-home-index.R:160 msgid "Links" msgstr "Links" #: build-home-index.R:165 msgid "Table of contents" msgstr "Inhaltsverzeichnis" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "Lizenz" #: build-home-license.R:29 msgid "Full license" msgstr "Vollständige Lizenz" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "Änderungsprotokoll" #: build-news.R:126 msgid "Version %s" msgstr "Version %s" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "Neuigkeiten" #: build-news.R:242 msgid "Releases" msgstr "Veröffentlichungen" #: build-news.R:298 msgid "CRAN release: %s" msgstr "CRAN-Veröffentlichung: %s" #: build-reference-index.R:20 msgid "Function reference" msgstr "Funktionsverzeichnis" #: build-reference-index.R:130 msgid "All functions" msgstr "Alle Funktionen" #: build-reference.R:353 msgid "Usage" msgstr "Verwendung" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "Tutorien" #: development.R:72 msgid "Released version" msgstr "Veröffentlichte Version" #: development.R:73 msgid "In-development version" msgstr "Version in Entwicklung" #: development.R:74 msgid "Unreleased version" msgstr "Unveröffentlichte Version" #: navbar.R:99 msgid "Reference" msgstr "Verzeichnis" #: navbar.R:130 msgid "Get started" msgstr "Erste Schritte" #: navbar.R:156 msgid "More articles..." msgstr "Mehr Artikel ..." #: rd-data.R:33 msgid "Details" msgstr "Details" #: rd-data.R:37 msgid "Description" msgstr "Beschreibung" #: rd-data.R:41 msgid "References" msgstr "Literaturverzeichnis" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "Quelle" #: rd-data.R:49 msgid "Format" msgstr "Format" #: rd-data.R:53 msgid "Note" msgstr "Notiz" #: rd-data.R:57 msgid "Author" msgstr "Autor:in" #: rd-data.R:61 msgid "See also" msgstr "Siehe auch" #: rd-data.R:77 msgid "Arguments" msgstr "Argumente" #: rd-data.R:85 msgid "Value" msgstr "Rückgabewert" #: rd-html.R:208 msgid "# %s method for %s" msgstr "# %s-Methode für %s" #: render.R:90 msgid "Skip to contents" msgstr "Direkt zum Inhalt springen" #: render.R:91 msgid "Toggle navigation" msgstr "Navigation ein-/ausschalten" #: render.R:92 msgid "Search for" msgstr "Suchen nach" #: render.R:93 msgid "On this page" msgstr "Auf dieser Seite" #: render.R:95 msgid "Abstract" msgstr "Kurzzusammenfassung" #: render.R:97 msgid "Version" msgstr "Version" #: render.R:98 msgid "Examples" msgstr "Beispiele" #: render.R:99 msgid "Citation" msgstr "Zitationsvorschlag" #: repo.R:33 msgid "Source:" msgstr "Quelle:" #: tweak-homepage.R:60 msgid "Dev status" msgstr "Entwicklungsstatus" pkgdown/po/R-fr.po0000644000176200001440000001252714343702101013511 0ustar liggesusersmsgid "" msgstr "" "Project-Id-Version: pkgdown 1.9000.9000.9000\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-11-25 22:33+0100\n" "PO-Revision-Date: 2021-10-27 11:57-0500\n" "Last-Translator: \n" "Language-Team: fr\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: potools 0.2.2\n" #: build-404.R:11 msgid "Page not found (404)" msgstr "Page introuvable (404)" #: build-404.R:12 msgid "Content not found. Please use links in the navbar." msgstr "" "Contenu introuvable. Merci d'utiliser les liens de la barre de navigation." #: build-articles.R:381 navbar.R:136 navbar.R:143 navbar.R:158 msgid "Articles" msgstr "Articles" #: build-articles.R:430 msgid "All vignettes" msgstr "Tous les articles" #: build-footer.R:23 msgid "Developed by" msgstr "Développé par" #: build-footer.R:28 msgid "Site built with pkgdown %s." msgstr "Site créé avec pkgdown %s." #: build-home-authors.R:69 msgid "More about authors..." msgstr "À propos des auteur·rice·s..." #: build-home-authors.R:72 msgid "Developers" msgstr "Développeur·se·s" #: build-home-authors.R:77 render.R:96 msgid "Authors" msgstr "Auteur·rice·s" #: build-home-authors.R:169 msgid "author" msgstr "auteur·rice" #: build-home-authors.R:170 msgid "compiler" msgstr "compilateur·rice" #: build-home-authors.R:171 msgid "contractor" msgstr "fournisseur·se" #: build-home-authors.R:172 msgid "contributor" msgstr "contributeur·rice" #: build-home-authors.R:173 msgid "copyright holder" msgstr "titulaire des droits d'auteur" #: build-home-authors.R:174 msgid "maintainer" msgstr "mainteneur·se" #: build-home-authors.R:175 msgid "data contributor" msgstr "contributeur·rice des données" #: build-home-authors.R:176 msgid "funder" msgstr "fondateur·rice" #: build-home-authors.R:177 msgid "reviewer" msgstr "réviseur·se" #: build-home-authors.R:178 msgid "thesis advisor" msgstr "directeur·rice de thèse" #: build-home-authors.R:179 msgid "translator" msgstr "traducteur·rice" #: build-home-citation.R:36 msgid "Citing %s" msgstr "Citer %s" #: build-home-citation.R:91 msgid "Authors and Citation" msgstr "Auteur·rice·s et Citation" #: build-home-community.R:23 msgid "Contributing guide" msgstr "Guide de contribution" #: build-home-community.R:27 msgid "Code of conduct" msgstr "Code de conduite" #: build-home-community.R:31 msgid "Getting help" msgstr "" #: build-home-community.R:38 msgid "Community" msgstr "Communauté" #: build-home-index.R:88 msgid "Dev Status" msgstr "Statut de développement" #: build-home-index.R:154 msgid "View on %s" msgstr "Voir sur %s" #: build-home-index.R:155 msgid "Browse source code" msgstr "Naviguer le code source" #: build-home-index.R:156 msgid "Report a bug" msgstr "Signaler un bogue" #: build-home-index.R:160 msgid "Links" msgstr "Liens" #: build-home-index.R:165 msgid "Table of contents" msgstr "Table des matières" #: build-home-license.R:12 build-home-license.R:34 msgid "License" msgstr "Licence" #: build-home-license.R:29 msgid "Full license" msgstr "Licence complète" #: build-news.R:101 build-news.R:246 build-news.R:251 msgid "Changelog" msgstr "Changements" #: build-news.R:126 msgid "Version %s" msgstr "Version %s" #: build-news.R:138 build-news.R:240 msgid "News" msgstr "Nouveautés" #: build-news.R:242 msgid "Releases" msgstr "Versions" #: build-news.R:298 msgid "CRAN release: %s" msgstr "Version CRAN : %s" #: build-reference-index.R:20 msgid "Function reference" msgstr "Documentation des fonctions" #: build-reference-index.R:130 msgid "All functions" msgstr "Toutes les fonctions" #: build-reference.R:353 msgid "Usage" msgstr "Utilisation" #: build-tutorials.R:46 navbar.R:102 msgid "Tutorials" msgstr "Tutoriels" #: development.R:72 msgid "Released version" msgstr "Dernière version publiée" #: development.R:73 msgid "In-development version" msgstr "Version en développement" #: development.R:74 msgid "Unreleased version" msgstr "Version inédite" #: navbar.R:99 msgid "Reference" msgstr "Référence" #: navbar.R:130 msgid "Get started" msgstr "Prise en main" #: navbar.R:156 msgid "More articles..." msgstr "Plus d'articles..." #: rd-data.R:33 msgid "Details" msgstr "Détails" #: rd-data.R:37 msgid "Description" msgstr "Description" #: rd-data.R:41 msgid "References" msgstr "Références" #: rd-data.R:45 render.R:94 msgid "Source" msgstr "Source" #: rd-data.R:49 msgid "Format" msgstr "Format" #: rd-data.R:53 msgid "Note" msgstr "Note" #: rd-data.R:57 msgid "Author" msgstr "Auteur" #: rd-data.R:61 msgid "See also" msgstr "Voir également" #: rd-data.R:77 msgid "Arguments" msgstr "Arguments" #: rd-data.R:85 msgid "Value" msgstr "Valeur de retour" #: rd-html.R:208 msgid "# %s method for %s" msgstr "# Méthode %s pour %s" #: render.R:90 msgid "Skip to contents" msgstr "Passer au contenu" #: render.R:91 msgid "Toggle navigation" msgstr "Activer la navigation" #: render.R:92 msgid "Search for" msgstr "Rechercher" #: render.R:93 msgid "On this page" msgstr "Sur cette page" #: render.R:95 msgid "Abstract" msgstr "Résumé" #: render.R:97 msgid "Version" msgstr "Version" #: render.R:98 msgid "Examples" msgstr "Exemples" #: render.R:99 msgid "Citation" msgstr "Citation" #: repo.R:33 msgid "Source:" msgstr "Source :" #: tweak-homepage.R:60 msgid "Dev status" msgstr "Statut de développement"