#' Custom logging function for scripts
#'
#' @param title The title in the log output
#' @param ... Any additional outputs or words to be plotted
#' @export
#' @author Martin Jung
myLog <- function(title = "[Processing] ",...) {
cat(paste0(title, Sys.time(), " | ", ..., "\n"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.