#' c_sort_collapse
#'
#' @description Sort and collapse two vectors in a column.
#'
#'
#' @export
c_sort_collapse <- function(...){
c(...) %>%
sort() %>%
str_c(collapse = ".")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.