#' Title
#'
#' @param lhs
#' @param rhs
#'
#' @return
#' @export
#'
#' @examples
`%||%` <- function(lhs, rhs){
if(!is.null(lhs)){
lhs
} else {
rhs
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.