#' Creates an 'invisible' indent in the console
#' @param n number of tabs to return in console before the next line
#'
#' @export
indent <-
function(n) {
cat(
paste(rep("\t", n), sep = "", collapse = "")
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.