#' Check if two objects are identical
#' @param a an object.
#' @param b an object.
#' @return TRUE if a and b are identical; FALSE otherwise.
#' @export
`%is%` = function(a, b) {
identical(a, b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.