check4pkg <- function(x) {
if (!requireNamespace(x, quietly = TRUE)) {
stop("Please install ", x, call. = FALSE)
} else {
invisible(TRUE)
}
}
cl <- function(l) Filter(Negate(is.null), l)
assert <- function(x, y) {
if (!is.null(x)) {
if (!inherits(x, y)) {
stop(deparse(substitute(x)), " must be of class ",
paste0(y, collapse = ", "), call. = FALSE)
}
}
}
file_type <- function(x) {
if (grepl("\\.pdf$", x)) return("pdf")
if (grepl("\\.xml$", x)) return("xml")
return(last(strsplit(x, "\\.")[[1]]))
}
last <- function(x) x[length(x)]
gnfinder_exists <- function() {
check_gnf <- sys::exec_internal("gnfinder")
if (check_gnf$status != 0) stop("`gnfinder` not found, see ?name_extract")
return(TRUE)
}
err_chk <- function(z) {
if (z$status != 0) {
err <- rawToChar(z$stderr)
err <- gsub("Error: ", "", err)
# language replacement
err <- gsub("-l detect", "language=\"detect\"", err)
stop(err, call. = FALSE)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.