#' Decorator operator
#'
#' @param decorator The decorator functional
#' @param f The function to be decorated
#' @return The decorated function
#' @export
`%decorate%` <- function(decorator, f) {
decorator(f)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.