#'Rapid string parsing
#'
#'Method for quicker pasting of Strings.
#'
#'@rdname stringpaste
#'@usage a \%+\% b
#'@title Operator for concatenation.
#'@param a The first String
#'@param b The second String
#'
#'@return character formatted concatenation of both input strings.
#'
#'@export
"%+%" <- function(a, b) stringr::str_c(a, b, sep = "")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.