Nothing
# functions to help reduce duplication and increase consistency in the docs
### ss ----
param_ss <- function(..., pname = "ss") {
template <- glue("
@param {pname} \\
Something that identifies a Google Sheet:
* its file id as a string or [`drive_id`][googledrive::as_id]
* a URL from which we can recover the id
* a one-row [`dribble`][googledrive::dribble], which is how googledrive
represents Drive files
* an instance of `googlesheets4_spreadsheet`, which is what [gs4_get()]
returns
Processed through [as_sheets_id()].")
dots <- list2(...)
if (length(dots) > 0) {
template <- c(template, dots)
}
glue_collapse(template, sep = " ")
}
### sheet ----
param_sheet <- function(..., action = "act on", pname = "sheet") {
template <- glue("
@param {pname} \\
Sheet to {action}, in the sense of \"worksheet\" or \"tab\". \\
You can identify a sheet by name, with a string, or by position, \\
with a number.
")
dots <- list2(...)
if (length(dots) > 0) {
template <- c(template, dots)
}
glue_collapse(template, sep = " ")
}
param_before_after <- function(sheet_text) {
glue("
@param .before,.after \\
Optional specification of where to put the new {sheet_text}. \\
Specify, at most, one of `.before` and `.after`. Refer to an existing \\
sheet by name (via a string) or by position (via a number). If \\
unspecified, Sheets puts the new {sheet_text} at the end.
")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.