Nothing
.substitute_altdoc_variables <- function(x, filename, path = ".", tool = "docsify") {
x <- gsub("\\$ALTDOC_VERSION", utils::packageVersion("altdoc"), x)
files <- c("NEWS.md", "CHANGELOG.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE.md", "LICENCE.md", "CITATION.md")
for (vn in files) {
fn <- fs::path_join(c(.doc_path(path), vn))
regex <- sprintf("\\$ALTDOC_%s", fs::path_ext_remove(basename(vn)))
if (fs::file_exists(fn) || fs::file_exists(fs::path_join(c(path, "_quarto", vn)))) {
if (tool == "docute") {
new <- paste0("/", vn)
} else {
new <- vn
}
x <- gsub(regex, new, x)
} else {
x <- x[!grepl(regex, x)]
}
}
# DESCRIPTION file
fn <- fs::path_join(c(path, "DESCRIPTION"))
if (fs::file_exists(fn)) {
gh_url <- .gh_url(path)
if (length(gh_url) > 0) {
x <- gsub("\\$ALTDOC_PACKAGE_URL_GITHUB", gh_url, x)
} else {
x <- x[!grepl("\\$ALTDOC_PACKAGE_URL_GITHUB", x)]
}
all_urls <- tryCatch(desc::desc_get_urls(path), error = function(e) NULL)
website_url <- Filter(function(x) !grepl("github.com", x), all_urls)
if (length(website_url) > 0) {
x <- gsub("\\$ALTDOC_PACKAGE_URL", website_url[1], x)
} else {
x <- x[!grepl("\\$ALTDOC_PACKAGE_URL", x)]
}
x <- gsub("\\$ALTDOC_PACKAGE_NAME", desc::desc_get("Package", path), x)
x <- gsub("\\$ALTDOC_PACKAGE_VERSION", desc::desc_get("Version", path), x)
} else {
x <- gsub("\\$ALTDOC_PACKAGE_NAME", "", x)
x <- gsub("\\$ALTDOC_PACKAGE_VERSION", "", x)
x <- x[grepl("\\$ALTDOC_PACKAGE_URL_GITHUB")] # before the other one
x <- gsub("\\$ALTDOC_PACKAGE_URL", "", x)
}
# some commands expand the full path
x <- gsub(.doc_path(path), "", x, fixed = TRUE)
return(x)
}
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.