#'
#' Yes or no?
#'
#' @param b A boolean value
#' @return Returns "yes" if b is a single, defined boolean value that is TRUE;
#' "no" otherwise
#' @export
#'
yes_no = function(b) {
if (base::isTRUE(b)) "yes" else "no"
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.