#' Messages
#'
#' @param text String
#' @param silent Logical
#'
#' @return Message in console
#' @export
#'
ft_message <- function (text, silent)
{
if (silent) {
message("", appendLF = FALSE)
}
else {
message(text, appendLF = FALSE)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.